1. Packages
  2. Azure Native
  3. API Docs
  4. datafactory
  5. Pipeline
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

azure-native.datafactory.Pipeline

Explore with Pulumi AI

azure-native logo
This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi

    Pipeline resource type. Azure REST API version: 2018-06-01. Prior API version in Azure Native 1.x: 2018-06-01.

    Create Pipeline Resource

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

    Constructor syntax

    new Pipeline(name: string, args: PipelineArgs, opts?: CustomResourceOptions);
    @overload
    def Pipeline(resource_name: str,
                 args: PipelineArgs,
                 opts: Optional[ResourceOptions] = None)
    
    @overload
    def Pipeline(resource_name: str,
                 opts: Optional[ResourceOptions] = None,
                 factory_name: Optional[str] = None,
                 resource_group_name: Optional[str] = None,
                 activities: Optional[Sequence[Union[AppendVariableActivityArgs, AzureDataExplorerCommandActivityArgs, AzureFunctionActivityArgs, AzureMLBatchExecutionActivityArgs, AzureMLExecutePipelineActivityArgs, AzureMLUpdateResourceActivityArgs, ControlActivityArgs, CopyActivityArgs, CustomActivityArgs, DataLakeAnalyticsUSQLActivityArgs, DatabricksNotebookActivityArgs, DatabricksSparkJarActivityArgs, DatabricksSparkPythonActivityArgs, DeleteActivityArgs, ExecuteDataFlowActivityArgs, ExecutePipelineActivityArgs, ExecuteSSISPackageActivityArgs, ExecuteWranglingDataflowActivityArgs, ExecutionActivityArgs, FailActivityArgs, FilterActivityArgs, ForEachActivityArgs, GetMetadataActivityArgs, HDInsightHiveActivityArgs, HDInsightMapReduceActivityArgs, HDInsightPigActivityArgs, HDInsightSparkActivityArgs, HDInsightStreamingActivityArgs, IfConditionActivityArgs, LookupActivityArgs, ScriptActivityArgs, SetVariableActivityArgs, SqlServerStoredProcedureActivityArgs, SwitchActivityArgs, SynapseNotebookActivityArgs, SynapseSparkJobDefinitionActivityArgs, UntilActivityArgs, ValidationActivityArgs, WaitActivityArgs, WebActivityArgs, WebHookActivityArgs]]] = None,
                 annotations: Optional[Sequence[Any]] = None,
                 concurrency: Optional[int] = None,
                 description: Optional[str] = None,
                 folder: Optional[PipelineFolderArgs] = None,
                 parameters: Optional[Mapping[str, ParameterSpecificationArgs]] = None,
                 pipeline_name: Optional[str] = None,
                 policy: Optional[PipelinePolicyArgs] = None,
                 run_dimensions: Optional[Mapping[str, Any]] = None,
                 variables: Optional[Mapping[str, VariableSpecificationArgs]] = None)
    func NewPipeline(ctx *Context, name string, args PipelineArgs, opts ...ResourceOption) (*Pipeline, error)
    public Pipeline(string name, PipelineArgs args, CustomResourceOptions? opts = null)
    public Pipeline(String name, PipelineArgs args)
    public Pipeline(String name, PipelineArgs args, CustomResourceOptions options)
    
    type: azure-native:datafactory:Pipeline
    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 PipelineArgs
    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 PipelineArgs
    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 PipelineArgs
    The arguments to resource properties.
    opts ResourceOption
    Bag of options to control resource's behavior.
    name string
    The unique name of the resource.
    args PipelineArgs
    The arguments to resource properties.
    opts CustomResourceOptions
    Bag of options to control resource's behavior.
    name String
    The unique name of the resource.
    args PipelineArgs
    The arguments to resource properties.
    options CustomResourceOptions
    Bag of options to control resource's behavior.

    Example

    The following reference example uses placeholder values for all input properties.

    var azure_nativePipelineResource = new AzureNative.DataFactory.Pipeline("azure-nativePipelineResource", new()
    {
        FactoryName = "string",
        ResourceGroupName = "string",
        Activities = new[]
        {
            new AzureNative.DataFactory.Inputs.AppendVariableActivityArgs
            {
                Name = "string",
                Type = "AppendVariable",
                DependsOn = new[]
                {
                    new AzureNative.DataFactory.Inputs.ActivityDependencyArgs
                    {
                        Activity = "string",
                        DependencyConditions = new[]
                        {
                            "string",
                        },
                    },
                },
                Description = "string",
                OnInactiveMarkAs = "string",
                State = "string",
                UserProperties = new[]
                {
                    new AzureNative.DataFactory.Inputs.UserPropertyArgs
                    {
                        Name = "string",
                        Value = "any",
                    },
                },
                Value = "any",
                VariableName = "string",
            },
        },
        Annotations = new[]
        {
            "any",
        },
        Concurrency = 0,
        Description = "string",
        Folder = new AzureNative.DataFactory.Inputs.PipelineFolderArgs
        {
            Name = "string",
        },
        Parameters = 
        {
            { "string", new AzureNative.DataFactory.Inputs.ParameterSpecificationArgs
            {
                Type = "string",
                DefaultValue = "any",
            } },
        },
        PipelineName = "string",
        Policy = new AzureNative.DataFactory.Inputs.PipelinePolicyArgs
        {
            ElapsedTimeMetric = new AzureNative.DataFactory.Inputs.PipelineElapsedTimeMetricPolicyArgs
            {
                Duration = "any",
            },
        },
        RunDimensions = 
        {
            { "string", "any" },
        },
        Variables = 
        {
            { "string", new AzureNative.DataFactory.Inputs.VariableSpecificationArgs
            {
                Type = "string",
                DefaultValue = "any",
            } },
        },
    });
    
    example, err := datafactory.NewPipeline(ctx, "azure-nativePipelineResource", &datafactory.PipelineArgs{
    FactoryName: pulumi.String("string"),
    ResourceGroupName: pulumi.String("string"),
    Activities: pulumi.Array{
    datafactory.AppendVariableActivity{
    Name: "string",
    Type: "AppendVariable",
    DependsOn: []datafactory.ActivityDependency{
    {
    Activity: "string",
    DependencyConditions: []datafactory.DependencyCondition{
    "string",
    },
    },
    },
    Description: "string",
    OnInactiveMarkAs: "string",
    State: "string",
    UserProperties: []datafactory.UserProperty{
    {
    Name: "string",
    Value: "any",
    },
    },
    Value: "any",
    VariableName: "string",
    },
    },
    Annotations: pulumi.Array{
    pulumi.Any("any"),
    },
    Concurrency: pulumi.Int(0),
    Description: pulumi.String("string"),
    Folder: &datafactory.PipelineFolderArgs{
    Name: pulumi.String("string"),
    },
    Parameters: datafactory.ParameterSpecificationMap{
    "string": &datafactory.ParameterSpecificationArgs{
    Type: pulumi.String("string"),
    DefaultValue: pulumi.Any("any"),
    },
    },
    PipelineName: pulumi.String("string"),
    Policy: &datafactory.PipelinePolicyArgs{
    ElapsedTimeMetric: &datafactory.PipelineElapsedTimeMetricPolicyArgs{
    Duration: pulumi.Any("any"),
    },
    },
    RunDimensions: pulumi.Map{
    "string": pulumi.Any("any"),
    },
    Variables: datafactory.VariableSpecificationMap{
    "string": &datafactory.VariableSpecificationArgs{
    Type: pulumi.String("string"),
    DefaultValue: pulumi.Any("any"),
    },
    },
    })
    
    var azure_nativePipelineResource = new Pipeline("azure-nativePipelineResource", PipelineArgs.builder()        
        .factoryName("string")
        .resourceGroupName("string")
        .activities(AppendVariableActivityArgs.builder()
            .name("string")
            .type("AppendVariable")
            .dependsOn(ActivityDependencyArgs.builder()
                .activity("string")
                .dependencyConditions("string")
                .build())
            .description("string")
            .onInactiveMarkAs("string")
            .state("string")
            .userProperties(UserPropertyArgs.builder()
                .name("string")
                .value("any")
                .build())
            .value("any")
            .variableName("string")
            .build())
        .annotations("any")
        .concurrency(0)
        .description("string")
        .folder(PipelineFolderArgs.builder()
            .name("string")
            .build())
        .parameters(Map.of("string", Map.ofEntries(
            Map.entry("type", "string"),
            Map.entry("defaultValue", "any")
        )))
        .pipelineName("string")
        .policy(PipelinePolicyArgs.builder()
            .elapsedTimeMetric(PipelineElapsedTimeMetricPolicyArgs.builder()
                .duration("any")
                .build())
            .build())
        .runDimensions(Map.of("string", "any"))
        .variables(Map.of("string", Map.ofEntries(
            Map.entry("type", "string"),
            Map.entry("defaultValue", "any")
        )))
        .build());
    
    azure_native_pipeline_resource = azure_native.datafactory.Pipeline("azure-nativePipelineResource",
        factory_name="string",
        resource_group_name="string",
        activities=[azure_native.datafactory.AppendVariableActivityArgs(
            name="string",
            type="AppendVariable",
            depends_on=[azure_native.datafactory.ActivityDependencyArgs(
                activity="string",
                dependency_conditions=["string"],
            )],
            description="string",
            on_inactive_mark_as="string",
            state="string",
            user_properties=[azure_native.datafactory.UserPropertyArgs(
                name="string",
                value="any",
            )],
            value="any",
            variable_name="string",
        )],
        annotations=["any"],
        concurrency=0,
        description="string",
        folder=azure_native.datafactory.PipelineFolderArgs(
            name="string",
        ),
        parameters={
            "string": azure_native.datafactory.ParameterSpecificationArgs(
                type="string",
                default_value="any",
            ),
        },
        pipeline_name="string",
        policy=azure_native.datafactory.PipelinePolicyArgs(
            elapsed_time_metric=azure_native.datafactory.PipelineElapsedTimeMetricPolicyArgs(
                duration="any",
            ),
        ),
        run_dimensions={
            "string": "any",
        },
        variables={
            "string": azure_native.datafactory.VariableSpecificationArgs(
                type="string",
                default_value="any",
            ),
        })
    
    const azure_nativePipelineResource = new azure_native.datafactory.Pipeline("azure-nativePipelineResource", {
        factoryName: "string",
        resourceGroupName: "string",
        activities: [{
            name: "string",
            type: "AppendVariable",
            dependsOn: [{
                activity: "string",
                dependencyConditions: ["string"],
            }],
            description: "string",
            onInactiveMarkAs: "string",
            state: "string",
            userProperties: [{
                name: "string",
                value: "any",
            }],
            value: "any",
            variableName: "string",
        }],
        annotations: ["any"],
        concurrency: 0,
        description: "string",
        folder: {
            name: "string",
        },
        parameters: {
            string: {
                type: "string",
                defaultValue: "any",
            },
        },
        pipelineName: "string",
        policy: {
            elapsedTimeMetric: {
                duration: "any",
            },
        },
        runDimensions: {
            string: "any",
        },
        variables: {
            string: {
                type: "string",
                defaultValue: "any",
            },
        },
    });
    
    type: azure-native:datafactory:Pipeline
    properties:
        activities:
            - dependsOn:
                - activity: string
                  dependencyConditions:
                    - string
              description: string
              name: string
              onInactiveMarkAs: string
              state: string
              type: AppendVariable
              userProperties:
                - name: string
                  value: any
              value: any
              variableName: string
        annotations:
            - any
        concurrency: 0
        description: string
        factoryName: string
        folder:
            name: string
        parameters:
            string:
                defaultValue: any
                type: string
        pipelineName: string
        policy:
            elapsedTimeMetric:
                duration: any
        resourceGroupName: string
        runDimensions:
            string: any
        variables:
            string:
                defaultValue: any
                type: string
    

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

    FactoryName string
    The factory name.
    ResourceGroupName string
    The resource group name.
    Activities List<object>
    List of activities in pipeline.
    Annotations List<object>
    List of tags that can be used for describing the Pipeline.
    Concurrency int
    The max number of concurrent runs for the pipeline.
    Description string
    The description of the pipeline.
    Folder Pulumi.AzureNative.DataFactory.Inputs.PipelineFolder
    The folder that this Pipeline is in. If not specified, Pipeline will appear at the root level.
    Parameters Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.ParameterSpecificationArgs>
    List of parameters for pipeline.
    PipelineName string
    The pipeline name.
    Policy Pulumi.AzureNative.DataFactory.Inputs.PipelinePolicy
    Pipeline Policy.
    RunDimensions Dictionary<string, object>
    Dimensions emitted by Pipeline.
    Variables Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.VariableSpecificationArgs>
    List of variables for pipeline.
    FactoryName string
    The factory name.
    ResourceGroupName string
    The resource group name.
    Activities []interface{}
    List of activities in pipeline.
    Annotations []interface{}
    List of tags that can be used for describing the Pipeline.
    Concurrency int
    The max number of concurrent runs for the pipeline.
    Description string
    The description of the pipeline.
    Folder PipelineFolderArgs
    The folder that this Pipeline is in. If not specified, Pipeline will appear at the root level.
    Parameters map[string]ParameterSpecificationArgs
    List of parameters for pipeline.
    PipelineName string
    The pipeline name.
    Policy PipelinePolicyArgs
    Pipeline Policy.
    RunDimensions map[string]interface{}
    Dimensions emitted by Pipeline.
    Variables map[string]VariableSpecificationArgs
    List of variables for pipeline.
    factoryName String
    The factory name.
    resourceGroupName String
    The resource group name.
    activities List<Object>
    List of activities in pipeline.
    annotations List<Object>
    List of tags that can be used for describing the Pipeline.
    concurrency Integer
    The max number of concurrent runs for the pipeline.
    description String
    The description of the pipeline.
    folder PipelineFolder
    The folder that this Pipeline is in. If not specified, Pipeline will appear at the root level.
    parameters Map<String,ParameterSpecificationArgs>
    List of parameters for pipeline.
    pipelineName String
    The pipeline name.
    policy PipelinePolicy
    Pipeline Policy.
    runDimensions Map<String,Object>
    Dimensions emitted by Pipeline.
    variables Map<String,VariableSpecificationArgs>
    List of variables for pipeline.
    factoryName string
    The factory name.
    resourceGroupName string
    The resource group name.
    activities (AppendVariableActivity | AzureDataExplorerCommandActivityArgs | AzureFunctionActivityArgs | AzureMLBatchExecutionActivityArgs | AzureMLExecutePipelineActivityArgs | AzureMLUpdateResourceActivityArgs | ControlActivityArgs | CopyActivityArgs | CustomActivityArgs | DataLakeAnalyticsUSQLActivityArgs | DatabricksNotebookActivityArgs | DatabricksSparkJarActivityArgs | DatabricksSparkPythonActivityArgs | DeleteActivityArgs | ExecuteDataFlowActivityArgs | ExecutePipelineActivityArgs | ExecuteSSISPackageActivityArgs | ExecuteWranglingDataflowActivityArgs | ExecutionActivityArgs | FailActivityArgs | FilterActivityArgs | ForEachActivityArgs | GetMetadataActivityArgs | HDInsightHiveActivityArgs | HDInsightMapReduceActivityArgs | HDInsightPigActivityArgs | HDInsightSparkActivityArgs | HDInsightStreamingActivityArgs | IfConditionActivityArgs | LookupActivityArgs | ScriptActivityArgs | SetVariableActivityArgs | SqlServerStoredProcedureActivityArgs | SwitchActivityArgs | SynapseNotebookActivityArgs | SynapseSparkJobDefinitionActivityArgs | UntilActivityArgs | ValidationActivityArgs | WaitActivityArgs | WebActivityArgs | WebHookActivityArgs)[]
    List of activities in pipeline.
    annotations any[]
    List of tags that can be used for describing the Pipeline.
    concurrency number
    The max number of concurrent runs for the pipeline.
    description string
    The description of the pipeline.
    folder PipelineFolder
    The folder that this Pipeline is in. If not specified, Pipeline will appear at the root level.
    parameters {[key: string]: ParameterSpecificationArgs}
    List of parameters for pipeline.
    pipelineName string
    The pipeline name.
    policy PipelinePolicy
    Pipeline Policy.
    runDimensions {[key: string]: any}
    Dimensions emitted by Pipeline.
    variables {[key: string]: VariableSpecificationArgs}
    List of variables for pipeline.
    factory_name str
    The factory name.
    resource_group_name str
    The resource group name.
    activities Sequence[Union[AppendVariableActivityArgs, AzureDataExplorerCommandActivityArgs, AzureFunctionActivityArgs, AzureMLBatchExecutionActivityArgs, AzureMLExecutePipelineActivityArgs, AzureMLUpdateResourceActivityArgs, ControlActivityArgs, CopyActivityArgs, CustomActivityArgs, DataLakeAnalyticsUSQLActivityArgs, DatabricksNotebookActivityArgs, DatabricksSparkJarActivityArgs, DatabricksSparkPythonActivityArgs, DeleteActivityArgs, ExecuteDataFlowActivityArgs, ExecutePipelineActivityArgs, ExecuteSSISPackageActivityArgs, ExecuteWranglingDataflowActivityArgs, ExecutionActivityArgs, FailActivityArgs, FilterActivityArgs, ForEachActivityArgs, GetMetadataActivityArgs, HDInsightHiveActivityArgs, HDInsightMapReduceActivityArgs, HDInsightPigActivityArgs, HDInsightSparkActivityArgs, HDInsightStreamingActivityArgs, IfConditionActivityArgs, LookupActivityArgs, ScriptActivityArgs, SetVariableActivityArgs, SqlServerStoredProcedureActivityArgs, SwitchActivityArgs, SynapseNotebookActivityArgs, SynapseSparkJobDefinitionActivityArgs, UntilActivityArgs, ValidationActivityArgs, WaitActivityArgs, WebActivityArgs, WebHookActivityArgs]]
    List of activities in pipeline.
    annotations Sequence[Any]
    List of tags that can be used for describing the Pipeline.
    concurrency int
    The max number of concurrent runs for the pipeline.
    description str
    The description of the pipeline.
    folder PipelineFolderArgs
    The folder that this Pipeline is in. If not specified, Pipeline will appear at the root level.
    parameters Mapping[str, ParameterSpecificationArgs]
    List of parameters for pipeline.
    pipeline_name str
    The pipeline name.
    policy PipelinePolicyArgs
    Pipeline Policy.
    run_dimensions Mapping[str, Any]
    Dimensions emitted by Pipeline.
    variables Mapping[str, VariableSpecificationArgs]
    List of variables for pipeline.
    factoryName String
    The factory name.
    resourceGroupName String
    The resource group name.
    activities List<Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map>
    List of activities in pipeline.
    annotations List<Any>
    List of tags that can be used for describing the Pipeline.
    concurrency Number
    The max number of concurrent runs for the pipeline.
    description String
    The description of the pipeline.
    folder Property Map
    The folder that this Pipeline is in. If not specified, Pipeline will appear at the root level.
    parameters Map<Property Map>
    List of parameters for pipeline.
    pipelineName String
    The pipeline name.
    policy Property Map
    Pipeline Policy.
    runDimensions Map<Any>
    Dimensions emitted by Pipeline.
    variables Map<Property Map>
    List of variables for pipeline.

    Outputs

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

    Etag string
    Etag identifies change in the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The resource name.
    Type string
    The resource type.
    Etag string
    Etag identifies change in the resource.
    Id string
    The provider-assigned unique ID for this managed resource.
    Name string
    The resource name.
    Type string
    The resource type.
    etag String
    Etag identifies change in the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The resource name.
    type String
    The resource type.
    etag string
    Etag identifies change in the resource.
    id string
    The provider-assigned unique ID for this managed resource.
    name string
    The resource name.
    type string
    The resource type.
    etag str
    Etag identifies change in the resource.
    id str
    The provider-assigned unique ID for this managed resource.
    name str
    The resource name.
    type str
    The resource type.
    etag String
    Etag identifies change in the resource.
    id String
    The provider-assigned unique ID for this managed resource.
    name String
    The resource name.
    type String
    The resource type.

    Supporting Types

    Note: There are over 200 nested types for this resource. Only the first 200 types are included in this documentation.

    ActivityDependency, ActivityDependencyArgs

    Activity string
    Activity name.
    DependencyConditions List<Union<string, Pulumi.AzureNative.DataFactory.DependencyCondition>>
    Match-Condition for the dependency.
    Activity string
    Activity name.
    DependencyConditions []string
    Match-Condition for the dependency.
    activity String
    Activity name.
    dependencyConditions List<Either<String,DependencyCondition>>
    Match-Condition for the dependency.
    activity string
    Activity name.
    dependencyConditions (string | DependencyCondition)[]
    Match-Condition for the dependency.
    activity str
    Activity name.
    dependency_conditions Sequence[Union[str, DependencyCondition]]
    Match-Condition for the dependency.
    activity String
    Activity name.
    dependencyConditions List<String | "Succeeded" | "Failed" | "Skipped" | "Completed">
    Match-Condition for the dependency.

    ActivityDependencyResponse, ActivityDependencyResponseArgs

    Activity string
    Activity name.
    DependencyConditions List<string>
    Match-Condition for the dependency.
    Activity string
    Activity name.
    DependencyConditions []string
    Match-Condition for the dependency.
    activity String
    Activity name.
    dependencyConditions List<String>
    Match-Condition for the dependency.
    activity string
    Activity name.
    dependencyConditions string[]
    Match-Condition for the dependency.
    activity str
    Activity name.
    dependency_conditions Sequence[str]
    Match-Condition for the dependency.
    activity String
    Activity name.
    dependencyConditions List<String>
    Match-Condition for the dependency.

    ActivityOnInactiveMarkAs, ActivityOnInactiveMarkAsArgs

    Succeeded
    Succeeded
    Failed
    Failed
    Skipped
    Skipped
    ActivityOnInactiveMarkAsSucceeded
    Succeeded
    ActivityOnInactiveMarkAsFailed
    Failed
    ActivityOnInactiveMarkAsSkipped
    Skipped
    Succeeded
    Succeeded
    Failed
    Failed
    Skipped
    Skipped
    Succeeded
    Succeeded
    Failed
    Failed
    Skipped
    Skipped
    SUCCEEDED
    Succeeded
    FAILED
    Failed
    SKIPPED
    Skipped
    "Succeeded"
    Succeeded
    "Failed"
    Failed
    "Skipped"
    Skipped

    ActivityPolicy, ActivityPolicyArgs

    Retry object
    Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
    RetryIntervalInSeconds int
    Interval between each retry attempt (in seconds). The default is 30 sec.
    SecureInput bool
    When set to true, Input from activity is considered as secure and will not be logged to monitoring.
    SecureOutput bool
    When set to true, Output from activity is considered as secure and will not be logged to monitoring.
    Timeout object
    Specifies the timeout for the activity to run. The default timeout is 7 days. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    Retry interface{}
    Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
    RetryIntervalInSeconds int
    Interval between each retry attempt (in seconds). The default is 30 sec.
    SecureInput bool
    When set to true, Input from activity is considered as secure and will not be logged to monitoring.
    SecureOutput bool
    When set to true, Output from activity is considered as secure and will not be logged to monitoring.
    Timeout interface{}
    Specifies the timeout for the activity to run. The default timeout is 7 days. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    retry Object
    Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
    retryIntervalInSeconds Integer
    Interval between each retry attempt (in seconds). The default is 30 sec.
    secureInput Boolean
    When set to true, Input from activity is considered as secure and will not be logged to monitoring.
    secureOutput Boolean
    When set to true, Output from activity is considered as secure and will not be logged to monitoring.
    timeout Object
    Specifies the timeout for the activity to run. The default timeout is 7 days. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    retry any
    Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
    retryIntervalInSeconds number
    Interval between each retry attempt (in seconds). The default is 30 sec.
    secureInput boolean
    When set to true, Input from activity is considered as secure and will not be logged to monitoring.
    secureOutput boolean
    When set to true, Output from activity is considered as secure and will not be logged to monitoring.
    timeout any
    Specifies the timeout for the activity to run. The default timeout is 7 days. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    retry Any
    Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
    retry_interval_in_seconds int
    Interval between each retry attempt (in seconds). The default is 30 sec.
    secure_input bool
    When set to true, Input from activity is considered as secure and will not be logged to monitoring.
    secure_output bool
    When set to true, Output from activity is considered as secure and will not be logged to monitoring.
    timeout Any
    Specifies the timeout for the activity to run. The default timeout is 7 days. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    retry Any
    Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
    retryIntervalInSeconds Number
    Interval between each retry attempt (in seconds). The default is 30 sec.
    secureInput Boolean
    When set to true, Input from activity is considered as secure and will not be logged to monitoring.
    secureOutput Boolean
    When set to true, Output from activity is considered as secure and will not be logged to monitoring.
    timeout Any
    Specifies the timeout for the activity to run. The default timeout is 7 days. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    ActivityPolicyResponse, ActivityPolicyResponseArgs

    Retry object
    Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
    RetryIntervalInSeconds int
    Interval between each retry attempt (in seconds). The default is 30 sec.
    SecureInput bool
    When set to true, Input from activity is considered as secure and will not be logged to monitoring.
    SecureOutput bool
    When set to true, Output from activity is considered as secure and will not be logged to monitoring.
    Timeout object
    Specifies the timeout for the activity to run. The default timeout is 7 days. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    Retry interface{}
    Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
    RetryIntervalInSeconds int
    Interval between each retry attempt (in seconds). The default is 30 sec.
    SecureInput bool
    When set to true, Input from activity is considered as secure and will not be logged to monitoring.
    SecureOutput bool
    When set to true, Output from activity is considered as secure and will not be logged to monitoring.
    Timeout interface{}
    Specifies the timeout for the activity to run. The default timeout is 7 days. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    retry Object
    Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
    retryIntervalInSeconds Integer
    Interval between each retry attempt (in seconds). The default is 30 sec.
    secureInput Boolean
    When set to true, Input from activity is considered as secure and will not be logged to monitoring.
    secureOutput Boolean
    When set to true, Output from activity is considered as secure and will not be logged to monitoring.
    timeout Object
    Specifies the timeout for the activity to run. The default timeout is 7 days. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    retry any
    Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
    retryIntervalInSeconds number
    Interval between each retry attempt (in seconds). The default is 30 sec.
    secureInput boolean
    When set to true, Input from activity is considered as secure and will not be logged to monitoring.
    secureOutput boolean
    When set to true, Output from activity is considered as secure and will not be logged to monitoring.
    timeout any
    Specifies the timeout for the activity to run. The default timeout is 7 days. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    retry Any
    Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
    retry_interval_in_seconds int
    Interval between each retry attempt (in seconds). The default is 30 sec.
    secure_input bool
    When set to true, Input from activity is considered as secure and will not be logged to monitoring.
    secure_output bool
    When set to true, Output from activity is considered as secure and will not be logged to monitoring.
    timeout Any
    Specifies the timeout for the activity to run. The default timeout is 7 days. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    retry Any
    Maximum ordinary retry attempts. Default is 0. Type: integer (or Expression with resultType integer), minimum: 0.
    retryIntervalInSeconds Number
    Interval between each retry attempt (in seconds). The default is 30 sec.
    secureInput Boolean
    When set to true, Input from activity is considered as secure and will not be logged to monitoring.
    secureOutput Boolean
    When set to true, Output from activity is considered as secure and will not be logged to monitoring.
    timeout Any
    Specifies the timeout for the activity to run. The default timeout is 7 days. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    ActivityState, ActivityStateArgs

    Active
    Active
    Inactive
    Inactive
    ActivityStateActive
    Active
    ActivityStateInactive
    Inactive
    Active
    Active
    Inactive
    Inactive
    Active
    Active
    Inactive
    Inactive
    ACTIVE
    Active
    INACTIVE
    Inactive
    "Active"
    Active
    "Inactive"
    Inactive

    AmazonMWSSource, AmazonMWSSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AmazonMWSSourceResponse, AmazonMWSSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AmazonRdsForOraclePartitionSettings, AmazonRdsForOraclePartitionSettingsArgs

    PartitionColumnName object
    The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    PartitionLowerBound object
    The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    PartitionNames List<object>
    Names of the physical partitions of AmazonRdsForOracle table.
    PartitionUpperBound object
    The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    PartitionColumnName interface{}
    The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    PartitionLowerBound interface{}
    The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    PartitionNames []interface{}
    Names of the physical partitions of AmazonRdsForOracle table.
    PartitionUpperBound interface{}
    The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partitionColumnName Object
    The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partitionLowerBound Object
    The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partitionNames List<Object>
    Names of the physical partitions of AmazonRdsForOracle table.
    partitionUpperBound Object
    The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partitionColumnName any
    The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partitionLowerBound any
    The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partitionNames any[]
    Names of the physical partitions of AmazonRdsForOracle table.
    partitionUpperBound any
    The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partition_column_name Any
    The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partition_lower_bound Any
    The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partition_names Sequence[Any]
    Names of the physical partitions of AmazonRdsForOracle table.
    partition_upper_bound Any
    The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partitionColumnName Any
    The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partitionLowerBound Any
    The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partitionNames List<Any>
    Names of the physical partitions of AmazonRdsForOracle table.
    partitionUpperBound Any
    The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).

    AmazonRdsForOraclePartitionSettingsResponse, AmazonRdsForOraclePartitionSettingsResponseArgs

    PartitionColumnName object
    The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    PartitionLowerBound object
    The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    PartitionNames List<object>
    Names of the physical partitions of AmazonRdsForOracle table.
    PartitionUpperBound object
    The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    PartitionColumnName interface{}
    The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    PartitionLowerBound interface{}
    The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    PartitionNames []interface{}
    Names of the physical partitions of AmazonRdsForOracle table.
    PartitionUpperBound interface{}
    The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partitionColumnName Object
    The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partitionLowerBound Object
    The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partitionNames List<Object>
    Names of the physical partitions of AmazonRdsForOracle table.
    partitionUpperBound Object
    The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partitionColumnName any
    The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partitionLowerBound any
    The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partitionNames any[]
    Names of the physical partitions of AmazonRdsForOracle table.
    partitionUpperBound any
    The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partition_column_name Any
    The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partition_lower_bound Any
    The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partition_names Sequence[Any]
    Names of the physical partitions of AmazonRdsForOracle table.
    partition_upper_bound Any
    The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partitionColumnName Any
    The name of the column in integer type that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partitionLowerBound Any
    The minimum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).
    partitionNames List<Any>
    Names of the physical partitions of AmazonRdsForOracle table.
    partitionUpperBound Any
    The maximum value of column specified in partitionColumnName that will be used for proceeding range partitioning. Type: string (or Expression with resultType string).

    AmazonRdsForOracleSource, AmazonRdsForOracleSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    OracleReaderQuery object
    AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
    PartitionOption object
    The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
    PartitionSettings Pulumi.AzureNative.DataFactory.Inputs.AmazonRdsForOraclePartitionSettings
    The settings that will be leveraged for AmazonRdsForOracle source partitioning.
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    OracleReaderQuery interface{}
    AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
    PartitionOption interface{}
    The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
    PartitionSettings AmazonRdsForOraclePartitionSettings
    The settings that will be leveraged for AmazonRdsForOracle source partitioning.
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    oracleReaderQuery Object
    AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
    partitionOption Object
    The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
    partitionSettings AmazonRdsForOraclePartitionSettings
    The settings that will be leveraged for AmazonRdsForOracle source partitioning.
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    oracleReaderQuery any
    AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
    partitionOption any
    The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
    partitionSettings AmazonRdsForOraclePartitionSettings
    The settings that will be leveraged for AmazonRdsForOracle source partitioning.
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    oracle_reader_query Any
    AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
    partition_option Any
    The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
    partition_settings AmazonRdsForOraclePartitionSettings
    The settings that will be leveraged for AmazonRdsForOracle source partitioning.
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    oracleReaderQuery Any
    AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
    partitionOption Any
    The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
    partitionSettings Property Map
    The settings that will be leveraged for AmazonRdsForOracle source partitioning.
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AmazonRdsForOracleSourceResponse, AmazonRdsForOracleSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    OracleReaderQuery object
    AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
    PartitionOption object
    The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
    PartitionSettings Pulumi.AzureNative.DataFactory.Inputs.AmazonRdsForOraclePartitionSettingsResponse
    The settings that will be leveraged for AmazonRdsForOracle source partitioning.
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    OracleReaderQuery interface{}
    AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
    PartitionOption interface{}
    The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
    PartitionSettings AmazonRdsForOraclePartitionSettingsResponse
    The settings that will be leveraged for AmazonRdsForOracle source partitioning.
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    oracleReaderQuery Object
    AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
    partitionOption Object
    The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
    partitionSettings AmazonRdsForOraclePartitionSettingsResponse
    The settings that will be leveraged for AmazonRdsForOracle source partitioning.
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    oracleReaderQuery any
    AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
    partitionOption any
    The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
    partitionSettings AmazonRdsForOraclePartitionSettingsResponse
    The settings that will be leveraged for AmazonRdsForOracle source partitioning.
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    oracle_reader_query Any
    AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
    partition_option Any
    The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
    partition_settings AmazonRdsForOraclePartitionSettingsResponse
    The settings that will be leveraged for AmazonRdsForOracle source partitioning.
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    oracleReaderQuery Any
    AmazonRdsForOracle reader query. Type: string (or Expression with resultType string).
    partitionOption Any
    The partition mechanism that will be used for AmazonRdsForOracle read in parallel. Type: string (or Expression with resultType string).
    partitionSettings Property Map
    The settings that will be leveraged for AmazonRdsForOracle source partitioning.
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AmazonRdsForSqlServerSource, AmazonRdsForSqlServerSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IsolationLevel object
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    PartitionOption object
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
    PartitionSettings Pulumi.AzureNative.DataFactory.Inputs.SqlPartitionSettings
    The settings that will be leveraged for Sql source partitioning.
    ProduceAdditionalTypes object
    Which additional types to produce.
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SqlReaderQuery object
    SQL reader query. Type: string (or Expression with resultType string).
    SqlReaderStoredProcedureName object
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    StoredProcedureParameters object
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IsolationLevel interface{}
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    PartitionOption interface{}
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
    PartitionSettings SqlPartitionSettings
    The settings that will be leveraged for Sql source partitioning.
    ProduceAdditionalTypes interface{}
    Which additional types to produce.
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SqlReaderQuery interface{}
    SQL reader query. Type: string (or Expression with resultType string).
    SqlReaderStoredProcedureName interface{}
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    StoredProcedureParameters interface{}
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    isolationLevel Object
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    partitionOption Object
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
    partitionSettings SqlPartitionSettings
    The settings that will be leveraged for Sql source partitioning.
    produceAdditionalTypes Object
    Which additional types to produce.
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sqlReaderQuery Object
    SQL reader query. Type: string (or Expression with resultType string).
    sqlReaderStoredProcedureName Object
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    storedProcedureParameters Object
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    isolationLevel any
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    partitionOption any
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
    partitionSettings SqlPartitionSettings
    The settings that will be leveraged for Sql source partitioning.
    produceAdditionalTypes any
    Which additional types to produce.
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sqlReaderQuery any
    SQL reader query. Type: string (or Expression with resultType string).
    sqlReaderStoredProcedureName any
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    storedProcedureParameters any
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    isolation_level Any
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    partition_option Any
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
    partition_settings SqlPartitionSettings
    The settings that will be leveraged for Sql source partitioning.
    produce_additional_types Any
    Which additional types to produce.
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sql_reader_query Any
    SQL reader query. Type: string (or Expression with resultType string).
    sql_reader_stored_procedure_name Any
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    stored_procedure_parameters Any
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    isolationLevel Any
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    partitionOption Any
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
    partitionSettings Property Map
    The settings that will be leveraged for Sql source partitioning.
    produceAdditionalTypes Any
    Which additional types to produce.
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sqlReaderQuery Any
    SQL reader query. Type: string (or Expression with resultType string).
    sqlReaderStoredProcedureName Any
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    storedProcedureParameters Any
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".

    AmazonRdsForSqlServerSourceResponse, AmazonRdsForSqlServerSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IsolationLevel object
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    PartitionOption object
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
    PartitionSettings Pulumi.AzureNative.DataFactory.Inputs.SqlPartitionSettingsResponse
    The settings that will be leveraged for Sql source partitioning.
    ProduceAdditionalTypes object
    Which additional types to produce.
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SqlReaderQuery object
    SQL reader query. Type: string (or Expression with resultType string).
    SqlReaderStoredProcedureName object
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    StoredProcedureParameters object
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IsolationLevel interface{}
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    PartitionOption interface{}
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
    PartitionSettings SqlPartitionSettingsResponse
    The settings that will be leveraged for Sql source partitioning.
    ProduceAdditionalTypes interface{}
    Which additional types to produce.
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SqlReaderQuery interface{}
    SQL reader query. Type: string (or Expression with resultType string).
    SqlReaderStoredProcedureName interface{}
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    StoredProcedureParameters interface{}
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    isolationLevel Object
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    partitionOption Object
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
    partitionSettings SqlPartitionSettingsResponse
    The settings that will be leveraged for Sql source partitioning.
    produceAdditionalTypes Object
    Which additional types to produce.
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sqlReaderQuery Object
    SQL reader query. Type: string (or Expression with resultType string).
    sqlReaderStoredProcedureName Object
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    storedProcedureParameters Object
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    isolationLevel any
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    partitionOption any
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
    partitionSettings SqlPartitionSettingsResponse
    The settings that will be leveraged for Sql source partitioning.
    produceAdditionalTypes any
    Which additional types to produce.
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sqlReaderQuery any
    SQL reader query. Type: string (or Expression with resultType string).
    sqlReaderStoredProcedureName any
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    storedProcedureParameters any
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    isolation_level Any
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    partition_option Any
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
    partition_settings SqlPartitionSettingsResponse
    The settings that will be leveraged for Sql source partitioning.
    produce_additional_types Any
    Which additional types to produce.
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sql_reader_query Any
    SQL reader query. Type: string (or Expression with resultType string).
    sql_reader_stored_procedure_name Any
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    stored_procedure_parameters Any
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    isolationLevel Any
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    partitionOption Any
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange".
    partitionSettings Property Map
    The settings that will be leveraged for Sql source partitioning.
    produceAdditionalTypes Any
    Which additional types to produce.
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sqlReaderQuery Any
    SQL reader query. Type: string (or Expression with resultType string).
    sqlReaderStoredProcedureName Any
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    storedProcedureParameters Any
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".

    AmazonRedshiftSource, AmazonRedshiftSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    Database query. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    RedshiftUnloadSettings Pulumi.AzureNative.DataFactory.Inputs.RedshiftUnloadSettings
    The Amazon S3 settings needed for the interim Amazon S3 when copying from Amazon Redshift with unload. With this, data from Amazon Redshift source will be unloaded into S3 first and then copied into the targeted sink from the interim S3.
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    Database query. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    RedshiftUnloadSettings RedshiftUnloadSettings
    The Amazon S3 settings needed for the interim Amazon S3 when copying from Amazon Redshift with unload. With this, data from Amazon Redshift source will be unloaded into S3 first and then copied into the targeted sink from the interim S3.
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    Database query. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    redshiftUnloadSettings RedshiftUnloadSettings
    The Amazon S3 settings needed for the interim Amazon S3 when copying from Amazon Redshift with unload. With this, data from Amazon Redshift source will be unloaded into S3 first and then copied into the targeted sink from the interim S3.
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    Database query. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    redshiftUnloadSettings RedshiftUnloadSettings
    The Amazon S3 settings needed for the interim Amazon S3 when copying from Amazon Redshift with unload. With this, data from Amazon Redshift source will be unloaded into S3 first and then copied into the targeted sink from the interim S3.
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Database query. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    redshift_unload_settings RedshiftUnloadSettings
    The Amazon S3 settings needed for the interim Amazon S3 when copying from Amazon Redshift with unload. With this, data from Amazon Redshift source will be unloaded into S3 first and then copied into the targeted sink from the interim S3.
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Database query. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    redshiftUnloadSettings Property Map
    The Amazon S3 settings needed for the interim Amazon S3 when copying from Amazon Redshift with unload. With this, data from Amazon Redshift source will be unloaded into S3 first and then copied into the targeted sink from the interim S3.
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AmazonRedshiftSourceResponse, AmazonRedshiftSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    Database query. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    RedshiftUnloadSettings Pulumi.AzureNative.DataFactory.Inputs.RedshiftUnloadSettingsResponse
    The Amazon S3 settings needed for the interim Amazon S3 when copying from Amazon Redshift with unload. With this, data from Amazon Redshift source will be unloaded into S3 first and then copied into the targeted sink from the interim S3.
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    Database query. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    RedshiftUnloadSettings RedshiftUnloadSettingsResponse
    The Amazon S3 settings needed for the interim Amazon S3 when copying from Amazon Redshift with unload. With this, data from Amazon Redshift source will be unloaded into S3 first and then copied into the targeted sink from the interim S3.
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    Database query. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    redshiftUnloadSettings RedshiftUnloadSettingsResponse
    The Amazon S3 settings needed for the interim Amazon S3 when copying from Amazon Redshift with unload. With this, data from Amazon Redshift source will be unloaded into S3 first and then copied into the targeted sink from the interim S3.
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    Database query. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    redshiftUnloadSettings RedshiftUnloadSettingsResponse
    The Amazon S3 settings needed for the interim Amazon S3 when copying from Amazon Redshift with unload. With this, data from Amazon Redshift source will be unloaded into S3 first and then copied into the targeted sink from the interim S3.
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Database query. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    redshift_unload_settings RedshiftUnloadSettingsResponse
    The Amazon S3 settings needed for the interim Amazon S3 when copying from Amazon Redshift with unload. With this, data from Amazon Redshift source will be unloaded into S3 first and then copied into the targeted sink from the interim S3.
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Database query. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    redshiftUnloadSettings Property Map
    The Amazon S3 settings needed for the interim Amazon S3 when copying from Amazon Redshift with unload. With this, data from Amazon Redshift source will be unloaded into S3 first and then copied into the targeted sink from the interim S3.
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AmazonS3CompatibleReadSettings, AmazonS3CompatibleReadSettingsArgs

    DeleteFilesAfterCompletion object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Prefix object
    The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
    Recursive object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName object
    Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath object
    Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
    DeleteFilesAfterCompletion interface{}
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery interface{}
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath interface{}
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd interface{}
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart interface{}
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath interface{}
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Prefix interface{}
    The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
    Recursive interface{}
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName interface{}
    Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath interface{}
    Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Object
    The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
    recursive Object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Object
    Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Object
    Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix any
    The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
    recursive any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName any
    Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath any
    Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
    delete_files_after_completion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enable_partition_discovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    file_list_path Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modified_datetime_end Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modified_datetime_start Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partition_root_path Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Any
    The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcard_file_name Any
    Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
    wildcard_folder_path Any
    Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Any
    The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Any
    Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Any
    Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).

    AmazonS3CompatibleReadSettingsResponse, AmazonS3CompatibleReadSettingsResponseArgs

    DeleteFilesAfterCompletion object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Prefix object
    The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
    Recursive object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName object
    Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath object
    Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
    DeleteFilesAfterCompletion interface{}
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery interface{}
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath interface{}
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd interface{}
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart interface{}
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath interface{}
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Prefix interface{}
    The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
    Recursive interface{}
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName interface{}
    Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath interface{}
    Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Object
    The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
    recursive Object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Object
    Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Object
    Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix any
    The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
    recursive any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName any
    Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath any
    Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
    delete_files_after_completion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enable_partition_discovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    file_list_path Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modified_datetime_end Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modified_datetime_start Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partition_root_path Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Any
    The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcard_file_name Any
    Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
    wildcard_folder_path Any
    Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Any
    The prefix filter for the S3 Compatible object name. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Any
    Amazon S3 Compatible wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Any
    Amazon S3 Compatible wildcardFolderPath. Type: string (or Expression with resultType string).

    AmazonS3ReadSettings, AmazonS3ReadSettingsArgs

    DeleteFilesAfterCompletion object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Prefix object
    The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
    Recursive object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName object
    AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath object
    AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
    DeleteFilesAfterCompletion interface{}
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery interface{}
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath interface{}
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd interface{}
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart interface{}
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath interface{}
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Prefix interface{}
    The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
    Recursive interface{}
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName interface{}
    AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath interface{}
    AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Object
    The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
    recursive Object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Object
    AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Object
    AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix any
    The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
    recursive any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName any
    AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath any
    AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
    delete_files_after_completion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enable_partition_discovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    file_list_path Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modified_datetime_end Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modified_datetime_start Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partition_root_path Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Any
    The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcard_file_name Any
    AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
    wildcard_folder_path Any
    AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Any
    The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Any
    AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Any
    AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).

    AmazonS3ReadSettingsResponse, AmazonS3ReadSettingsResponseArgs

    DeleteFilesAfterCompletion object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Prefix object
    The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
    Recursive object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName object
    AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath object
    AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
    DeleteFilesAfterCompletion interface{}
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery interface{}
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath interface{}
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd interface{}
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart interface{}
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath interface{}
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Prefix interface{}
    The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
    Recursive interface{}
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName interface{}
    AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath interface{}
    AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Object
    The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
    recursive Object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Object
    AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Object
    AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix any
    The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
    recursive any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName any
    AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath any
    AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
    delete_files_after_completion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enable_partition_discovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    file_list_path Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modified_datetime_end Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modified_datetime_start Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partition_root_path Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Any
    The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcard_file_name Any
    AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
    wildcard_folder_path Any
    AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Any
    The prefix filter for the S3 object name. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Any
    AmazonS3 wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Any
    AmazonS3 wildcardFolderPath. Type: string (or Expression with resultType string).

    AppendVariableActivity, AppendVariableActivityArgs

    Name string
    Activity name.
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependency>
    Activity depends on condition.
    Description string
    Activity description.
    OnInactiveMarkAs string | Pulumi.AzureNative.DataFactory.ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    State string | Pulumi.AzureNative.DataFactory.ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserProperty>
    Activity user properties.
    Value object
    Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
    VariableName string
    Name of the variable whose value needs to be appended to.
    Name string
    Activity name.
    DependsOn []ActivityDependency
    Activity depends on condition.
    Description string
    Activity description.
    OnInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    State string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserProperty
    Activity user properties.
    Value interface{}
    Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
    VariableName string
    Name of the variable whose value needs to be appended to.
    name String
    Activity name.
    dependsOn List<ActivityDependency>
    Activity depends on condition.
    description String
    Activity description.
    onInactiveMarkAs String | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    state String | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserProperty>
    Activity user properties.
    value Object
    Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
    variableName String
    Name of the variable whose value needs to be appended to.
    name string
    Activity name.
    dependsOn ActivityDependency[]
    Activity depends on condition.
    description string
    Activity description.
    onInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    state string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserProperty[]
    Activity user properties.
    value any
    Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
    variableName string
    Name of the variable whose value needs to be appended to.
    name str
    Activity name.
    depends_on Sequence[ActivityDependency]
    Activity depends on condition.
    description str
    Activity description.
    on_inactive_mark_as str | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    state str | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserProperty]
    Activity user properties.
    value Any
    Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
    variable_name str
    Name of the variable whose value needs to be appended to.
    name String
    Activity name.
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    onInactiveMarkAs String | "Succeeded" | "Failed" | "Skipped"
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    state String | "Active" | "Inactive"
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.
    value Any
    Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
    variableName String
    Name of the variable whose value needs to be appended to.

    AppendVariableActivityResponse, AppendVariableActivityResponseArgs

    Name string
    Activity name.
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependencyResponse>
    Activity depends on condition.
    Description string
    Activity description.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserPropertyResponse>
    Activity user properties.
    Value object
    Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
    VariableName string
    Name of the variable whose value needs to be appended to.
    Name string
    Activity name.
    DependsOn []ActivityDependencyResponse
    Activity depends on condition.
    Description string
    Activity description.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserPropertyResponse
    Activity user properties.
    Value interface{}
    Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
    VariableName string
    Name of the variable whose value needs to be appended to.
    name String
    Activity name.
    dependsOn List<ActivityDependencyResponse>
    Activity depends on condition.
    description String
    Activity description.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserPropertyResponse>
    Activity user properties.
    value Object
    Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
    variableName String
    Name of the variable whose value needs to be appended to.
    name string
    Activity name.
    dependsOn ActivityDependencyResponse[]
    Activity depends on condition.
    description string
    Activity description.
    onInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    state string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserPropertyResponse[]
    Activity user properties.
    value any
    Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
    variableName string
    Name of the variable whose value needs to be appended to.
    name str
    Activity name.
    depends_on Sequence[ActivityDependencyResponse]
    Activity depends on condition.
    description str
    Activity description.
    on_inactive_mark_as str
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    state str
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserPropertyResponse]
    Activity user properties.
    value Any
    Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
    variable_name str
    Name of the variable whose value needs to be appended to.
    name String
    Activity name.
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.
    value Any
    Value to be appended. Type: could be a static value matching type of the variable item or Expression with resultType matching type of the variable item
    variableName String
    Name of the variable whose value needs to be appended to.

    AvroSink, AvroSinkArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FormatSettings Pulumi.AzureNative.DataFactory.Inputs.AvroWriteSettings
    Avro format settings.
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSWriteSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageWriteSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreWriteSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageWriteSettings | Pulumi.AzureNative.DataFactory.Inputs.FileServerWriteSettings | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseWriteSettings | Pulumi.AzureNative.DataFactory.Inputs.SftpWriteSettings
    Avro store settings.
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FormatSettings AvroWriteSettings
    Avro format settings.
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings AzureBlobFSWriteSettings | AzureBlobStorageWriteSettings | AzureDataLakeStoreWriteSettings | AzureFileStorageWriteSettings | FileServerWriteSettings | LakeHouseWriteSettings | SftpWriteSettings
    Avro store settings.
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings AvroWriteSettings
    Avro format settings.
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AzureBlobFSWriteSettings | AzureBlobStorageWriteSettings | AzureDataLakeStoreWriteSettings | AzureFileStorageWriteSettings | FileServerWriteSettings | LakeHouseWriteSettings | SftpWriteSettings
    Avro store settings.
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings AvroWriteSettings
    Avro format settings.
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AzureBlobFSWriteSettings | AzureBlobStorageWriteSettings | AzureDataLakeStoreWriteSettings | AzureFileStorageWriteSettings | FileServerWriteSettings | LakeHouseWriteSettings | SftpWriteSettings
    Avro store settings.
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    format_settings AvroWriteSettings
    Avro format settings.
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    store_settings AzureBlobFSWriteSettings | AzureBlobStorageWriteSettings | AzureDataLakeStoreWriteSettings | AzureFileStorageWriteSettings | FileServerWriteSettings | LakeHouseWriteSettings | SftpWriteSettings
    Avro store settings.
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings Property Map
    Avro format settings.
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    Avro store settings.
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AvroSinkResponse, AvroSinkResponseArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FormatSettings Pulumi.AzureNative.DataFactory.Inputs.AvroWriteSettingsResponse
    Avro format settings.
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSWriteSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageWriteSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreWriteSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageWriteSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.FileServerWriteSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseWriteSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.SftpWriteSettingsResponse
    Avro store settings.
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FormatSettings AvroWriteSettingsResponse
    Avro format settings.
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings AzureBlobFSWriteSettingsResponse | AzureBlobStorageWriteSettingsResponse | AzureDataLakeStoreWriteSettingsResponse | AzureFileStorageWriteSettingsResponse | FileServerWriteSettingsResponse | LakeHouseWriteSettingsResponse | SftpWriteSettingsResponse
    Avro store settings.
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings AvroWriteSettingsResponse
    Avro format settings.
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AzureBlobFSWriteSettingsResponse | AzureBlobStorageWriteSettingsResponse | AzureDataLakeStoreWriteSettingsResponse | AzureFileStorageWriteSettingsResponse | FileServerWriteSettingsResponse | LakeHouseWriteSettingsResponse | SftpWriteSettingsResponse
    Avro store settings.
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings AvroWriteSettingsResponse
    Avro format settings.
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AzureBlobFSWriteSettingsResponse | AzureBlobStorageWriteSettingsResponse | AzureDataLakeStoreWriteSettingsResponse | AzureFileStorageWriteSettingsResponse | FileServerWriteSettingsResponse | LakeHouseWriteSettingsResponse | SftpWriteSettingsResponse
    Avro store settings.
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    format_settings AvroWriteSettingsResponse
    Avro format settings.
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    store_settings AzureBlobFSWriteSettingsResponse | AzureBlobStorageWriteSettingsResponse | AzureDataLakeStoreWriteSettingsResponse | AzureFileStorageWriteSettingsResponse | FileServerWriteSettingsResponse | LakeHouseWriteSettingsResponse | SftpWriteSettingsResponse
    Avro store settings.
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings Property Map
    Avro format settings.
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    Avro store settings.
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AvroSource, AvroSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3ReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageReadSettings | Pulumi.AzureNative.DataFactory.Inputs.FileServerReadSettings | Pulumi.AzureNative.DataFactory.Inputs.FtpReadSettings | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageReadSettings | Pulumi.AzureNative.DataFactory.Inputs.HdfsReadSettings | Pulumi.AzureNative.DataFactory.Inputs.HttpReadSettings | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseReadSettings | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageReadSettings | Pulumi.AzureNative.DataFactory.Inputs.SftpReadSettings
    Avro store settings.
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings AmazonS3CompatibleReadSettings | AmazonS3ReadSettings | AzureBlobFSReadSettings | AzureBlobStorageReadSettings | AzureDataLakeStoreReadSettings | AzureFileStorageReadSettings | FileServerReadSettings | FtpReadSettings | GoogleCloudStorageReadSettings | HdfsReadSettings | HttpReadSettings | LakeHouseReadSettings | OracleCloudStorageReadSettings | SftpReadSettings
    Avro store settings.
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AmazonS3CompatibleReadSettings | AmazonS3ReadSettings | AzureBlobFSReadSettings | AzureBlobStorageReadSettings | AzureDataLakeStoreReadSettings | AzureFileStorageReadSettings | FileServerReadSettings | FtpReadSettings | GoogleCloudStorageReadSettings | HdfsReadSettings | HttpReadSettings | LakeHouseReadSettings | OracleCloudStorageReadSettings | SftpReadSettings
    Avro store settings.
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AmazonS3CompatibleReadSettings | AmazonS3ReadSettings | AzureBlobFSReadSettings | AzureBlobStorageReadSettings | AzureDataLakeStoreReadSettings | AzureFileStorageReadSettings | FileServerReadSettings | FtpReadSettings | GoogleCloudStorageReadSettings | HdfsReadSettings | HttpReadSettings | LakeHouseReadSettings | OracleCloudStorageReadSettings | SftpReadSettings
    Avro store settings.
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    store_settings AmazonS3CompatibleReadSettings | AmazonS3ReadSettings | AzureBlobFSReadSettings | AzureBlobStorageReadSettings | AzureDataLakeStoreReadSettings | AzureFileStorageReadSettings | FileServerReadSettings | FtpReadSettings | GoogleCloudStorageReadSettings | HdfsReadSettings | HttpReadSettings | LakeHouseReadSettings | OracleCloudStorageReadSettings | SftpReadSettings
    Avro store settings.
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    Avro store settings.

    AvroSourceResponse, AvroSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3ReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.FileServerReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.FtpReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.HdfsReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.HttpReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.SftpReadSettingsResponse
    Avro store settings.
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings AmazonS3CompatibleReadSettingsResponse | AmazonS3ReadSettingsResponse | AzureBlobFSReadSettingsResponse | AzureBlobStorageReadSettingsResponse | AzureDataLakeStoreReadSettingsResponse | AzureFileStorageReadSettingsResponse | FileServerReadSettingsResponse | FtpReadSettingsResponse | GoogleCloudStorageReadSettingsResponse | HdfsReadSettingsResponse | HttpReadSettingsResponse | LakeHouseReadSettingsResponse | OracleCloudStorageReadSettingsResponse | SftpReadSettingsResponse
    Avro store settings.
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AmazonS3CompatibleReadSettingsResponse | AmazonS3ReadSettingsResponse | AzureBlobFSReadSettingsResponse | AzureBlobStorageReadSettingsResponse | AzureDataLakeStoreReadSettingsResponse | AzureFileStorageReadSettingsResponse | FileServerReadSettingsResponse | FtpReadSettingsResponse | GoogleCloudStorageReadSettingsResponse | HdfsReadSettingsResponse | HttpReadSettingsResponse | LakeHouseReadSettingsResponse | OracleCloudStorageReadSettingsResponse | SftpReadSettingsResponse
    Avro store settings.
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AmazonS3CompatibleReadSettingsResponse | AmazonS3ReadSettingsResponse | AzureBlobFSReadSettingsResponse | AzureBlobStorageReadSettingsResponse | AzureDataLakeStoreReadSettingsResponse | AzureFileStorageReadSettingsResponse | FileServerReadSettingsResponse | FtpReadSettingsResponse | GoogleCloudStorageReadSettingsResponse | HdfsReadSettingsResponse | HttpReadSettingsResponse | LakeHouseReadSettingsResponse | OracleCloudStorageReadSettingsResponse | SftpReadSettingsResponse
    Avro store settings.
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    store_settings AmazonS3CompatibleReadSettingsResponse | AmazonS3ReadSettingsResponse | AzureBlobFSReadSettingsResponse | AzureBlobStorageReadSettingsResponse | AzureDataLakeStoreReadSettingsResponse | AzureFileStorageReadSettingsResponse | FileServerReadSettingsResponse | FtpReadSettingsResponse | GoogleCloudStorageReadSettingsResponse | HdfsReadSettingsResponse | HttpReadSettingsResponse | LakeHouseReadSettingsResponse | OracleCloudStorageReadSettingsResponse | SftpReadSettingsResponse
    Avro store settings.
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    Avro store settings.

    AvroWriteSettings, AvroWriteSettingsArgs

    FileNamePrefix object
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    MaxRowsPerFile object
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    RecordName string
    Top level record name in write result, which is required in AVRO spec.
    RecordNamespace string
    Record namespace in the write result.
    FileNamePrefix interface{}
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    MaxRowsPerFile interface{}
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    RecordName string
    Top level record name in write result, which is required in AVRO spec.
    RecordNamespace string
    Record namespace in the write result.
    fileNamePrefix Object
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    maxRowsPerFile Object
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    recordName String
    Top level record name in write result, which is required in AVRO spec.
    recordNamespace String
    Record namespace in the write result.
    fileNamePrefix any
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    maxRowsPerFile any
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    recordName string
    Top level record name in write result, which is required in AVRO spec.
    recordNamespace string
    Record namespace in the write result.
    file_name_prefix Any
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    max_rows_per_file Any
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    record_name str
    Top level record name in write result, which is required in AVRO spec.
    record_namespace str
    Record namespace in the write result.
    fileNamePrefix Any
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    maxRowsPerFile Any
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    recordName String
    Top level record name in write result, which is required in AVRO spec.
    recordNamespace String
    Record namespace in the write result.

    AvroWriteSettingsResponse, AvroWriteSettingsResponseArgs

    FileNamePrefix object
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    MaxRowsPerFile object
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    RecordName string
    Top level record name in write result, which is required in AVRO spec.
    RecordNamespace string
    Record namespace in the write result.
    FileNamePrefix interface{}
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    MaxRowsPerFile interface{}
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    RecordName string
    Top level record name in write result, which is required in AVRO spec.
    RecordNamespace string
    Record namespace in the write result.
    fileNamePrefix Object
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    maxRowsPerFile Object
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    recordName String
    Top level record name in write result, which is required in AVRO spec.
    recordNamespace String
    Record namespace in the write result.
    fileNamePrefix any
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    maxRowsPerFile any
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    recordName string
    Top level record name in write result, which is required in AVRO spec.
    recordNamespace string
    Record namespace in the write result.
    file_name_prefix Any
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    max_rows_per_file Any
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    record_name str
    Top level record name in write result, which is required in AVRO spec.
    record_namespace str
    Record namespace in the write result.
    fileNamePrefix Any
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    maxRowsPerFile Any
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    recordName String
    Top level record name in write result, which is required in AVRO spec.
    recordNamespace String
    Record namespace in the write result.

    AzureBlobFSReadSettings, AzureBlobFSReadSettingsArgs

    DeleteFilesAfterCompletion object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Recursive object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName object
    Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath object
    Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
    DeleteFilesAfterCompletion interface{}
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery interface{}
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath interface{}
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd interface{}
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart interface{}
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath interface{}
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Recursive interface{}
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName interface{}
    Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath interface{}
    Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    recursive Object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Object
    Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Object
    Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    recursive any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName any
    Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath any
    Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
    delete_files_after_completion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enable_partition_discovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    file_list_path Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modified_datetime_end Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modified_datetime_start Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partition_root_path Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcard_file_name Any
    Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
    wildcard_folder_path Any
    Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Any
    Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Any
    Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).

    AzureBlobFSReadSettingsResponse, AzureBlobFSReadSettingsResponseArgs

    DeleteFilesAfterCompletion object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Recursive object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName object
    Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath object
    Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
    DeleteFilesAfterCompletion interface{}
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery interface{}
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath interface{}
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd interface{}
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart interface{}
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath interface{}
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Recursive interface{}
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName interface{}
    Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath interface{}
    Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    recursive Object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Object
    Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Object
    Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    recursive any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName any
    Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath any
    Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
    delete_files_after_completion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enable_partition_discovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    file_list_path Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modified_datetime_end Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modified_datetime_start Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partition_root_path Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcard_file_name Any
    Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
    wildcard_folder_path Any
    Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Any
    Azure blobFS wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Any
    Azure blobFS wildcardFolderPath. Type: string (or Expression with resultType string).

    AzureBlobFSSink, AzureBlobFSSinkArgs

    CopyBehavior object
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    Metadata List<Pulumi.AzureNative.DataFactory.Inputs.MetadataItem>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    CopyBehavior interface{}
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    Metadata []MetadataItem
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    copyBehavior Object
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    metadata List<MetadataItem>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    copyBehavior any
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    metadata MetadataItem[]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    copy_behavior Any
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    metadata Sequence[MetadataItem]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    copyBehavior Any
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    metadata List<Property Map>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureBlobFSSinkResponse, AzureBlobFSSinkResponseArgs

    CopyBehavior object
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    Metadata List<Pulumi.AzureNative.DataFactory.Inputs.MetadataItemResponse>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    CopyBehavior interface{}
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    Metadata []MetadataItemResponse
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    copyBehavior Object
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    metadata List<MetadataItemResponse>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    copyBehavior any
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    metadata MetadataItemResponse[]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    copy_behavior Any
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    metadata Sequence[MetadataItemResponse]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    copyBehavior Any
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    metadata List<Property Map>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureBlobFSSource, AzureBlobFSSourceArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Recursive object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    SkipHeaderLineCount object
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    TreatEmptyAsNull object
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Recursive interface{}
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    SkipHeaderLineCount interface{}
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    TreatEmptyAsNull interface{}
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive Object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    skipHeaderLineCount Object
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    treatEmptyAsNull Object
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    skipHeaderLineCount any
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    treatEmptyAsNull any
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    skip_header_line_count Any
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    treat_empty_as_null Any
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    skipHeaderLineCount Any
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    treatEmptyAsNull Any
    Treat empty as null. Type: boolean (or Expression with resultType boolean).

    AzureBlobFSSourceResponse, AzureBlobFSSourceResponseArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Recursive object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    SkipHeaderLineCount object
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    TreatEmptyAsNull object
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Recursive interface{}
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    SkipHeaderLineCount interface{}
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    TreatEmptyAsNull interface{}
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive Object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    skipHeaderLineCount Object
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    treatEmptyAsNull Object
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    skipHeaderLineCount any
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    treatEmptyAsNull any
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    skip_header_line_count Any
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    treat_empty_as_null Any
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    skipHeaderLineCount Any
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    treatEmptyAsNull Any
    Treat empty as null. Type: boolean (or Expression with resultType boolean).

    AzureBlobFSWriteSettings, AzureBlobFSWriteSettingsArgs

    BlockSizeInMB object
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    CopyBehavior object
    The type of copy behavior for copy sink.
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Metadata List<Pulumi.AzureNative.DataFactory.Inputs.MetadataItem>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    BlockSizeInMB interface{}
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    CopyBehavior interface{}
    The type of copy behavior for copy sink.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Metadata []MetadataItem
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    blockSizeInMB Object
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    copyBehavior Object
    The type of copy behavior for copy sink.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata List<MetadataItem>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    blockSizeInMB any
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    copyBehavior any
    The type of copy behavior for copy sink.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata MetadataItem[]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    block_size_in_mb Any
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    copy_behavior Any
    The type of copy behavior for copy sink.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata Sequence[MetadataItem]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    blockSizeInMB Any
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    copyBehavior Any
    The type of copy behavior for copy sink.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata List<Property Map>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).

    AzureBlobFSWriteSettingsResponse, AzureBlobFSWriteSettingsResponseArgs

    BlockSizeInMB object
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    CopyBehavior object
    The type of copy behavior for copy sink.
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Metadata List<Pulumi.AzureNative.DataFactory.Inputs.MetadataItemResponse>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    BlockSizeInMB interface{}
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    CopyBehavior interface{}
    The type of copy behavior for copy sink.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Metadata []MetadataItemResponse
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    blockSizeInMB Object
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    copyBehavior Object
    The type of copy behavior for copy sink.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata List<MetadataItemResponse>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    blockSizeInMB any
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    copyBehavior any
    The type of copy behavior for copy sink.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata MetadataItemResponse[]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    block_size_in_mb Any
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    copy_behavior Any
    The type of copy behavior for copy sink.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata Sequence[MetadataItemResponse]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    blockSizeInMB Any
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    copyBehavior Any
    The type of copy behavior for copy sink.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata List<Property Map>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).

    AzureBlobStorageReadSettings, AzureBlobStorageReadSettingsArgs

    DeleteFilesAfterCompletion object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Prefix object
    The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
    Recursive object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName object
    Azure blob wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath object
    Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
    DeleteFilesAfterCompletion interface{}
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery interface{}
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath interface{}
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd interface{}
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart interface{}
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath interface{}
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Prefix interface{}
    The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
    Recursive interface{}
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName interface{}
    Azure blob wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath interface{}
    Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Object
    The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
    recursive Object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Object
    Azure blob wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Object
    Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix any
    The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
    recursive any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName any
    Azure blob wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath any
    Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
    delete_files_after_completion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enable_partition_discovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    file_list_path Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modified_datetime_end Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modified_datetime_start Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partition_root_path Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Any
    The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcard_file_name Any
    Azure blob wildcardFileName. Type: string (or Expression with resultType string).
    wildcard_folder_path Any
    Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Any
    The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Any
    Azure blob wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Any
    Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).

    AzureBlobStorageReadSettingsResponse, AzureBlobStorageReadSettingsResponseArgs

    DeleteFilesAfterCompletion object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Prefix object
    The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
    Recursive object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName object
    Azure blob wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath object
    Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
    DeleteFilesAfterCompletion interface{}
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery interface{}
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath interface{}
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd interface{}
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart interface{}
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath interface{}
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Prefix interface{}
    The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
    Recursive interface{}
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName interface{}
    Azure blob wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath interface{}
    Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Object
    The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
    recursive Object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Object
    Azure blob wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Object
    Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix any
    The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
    recursive any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName any
    Azure blob wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath any
    Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
    delete_files_after_completion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enable_partition_discovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    file_list_path Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modified_datetime_end Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modified_datetime_start Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partition_root_path Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Any
    The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcard_file_name Any
    Azure blob wildcardFileName. Type: string (or Expression with resultType string).
    wildcard_folder_path Any
    Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Any
    The prefix filter for the Azure Blob name. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Any
    Azure blob wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Any
    Azure blob wildcardFolderPath. Type: string (or Expression with resultType string).

    AzureBlobStorageWriteSettings, AzureBlobStorageWriteSettingsArgs

    BlockSizeInMB object
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    CopyBehavior object
    The type of copy behavior for copy sink.
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Metadata List<Pulumi.AzureNative.DataFactory.Inputs.MetadataItem>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    BlockSizeInMB interface{}
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    CopyBehavior interface{}
    The type of copy behavior for copy sink.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Metadata []MetadataItem
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    blockSizeInMB Object
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    copyBehavior Object
    The type of copy behavior for copy sink.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata List<MetadataItem>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    blockSizeInMB any
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    copyBehavior any
    The type of copy behavior for copy sink.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata MetadataItem[]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    block_size_in_mb Any
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    copy_behavior Any
    The type of copy behavior for copy sink.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata Sequence[MetadataItem]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    blockSizeInMB Any
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    copyBehavior Any
    The type of copy behavior for copy sink.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata List<Property Map>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).

    AzureBlobStorageWriteSettingsResponse, AzureBlobStorageWriteSettingsResponseArgs

    BlockSizeInMB object
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    CopyBehavior object
    The type of copy behavior for copy sink.
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Metadata List<Pulumi.AzureNative.DataFactory.Inputs.MetadataItemResponse>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    BlockSizeInMB interface{}
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    CopyBehavior interface{}
    The type of copy behavior for copy sink.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Metadata []MetadataItemResponse
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    blockSizeInMB Object
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    copyBehavior Object
    The type of copy behavior for copy sink.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata List<MetadataItemResponse>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    blockSizeInMB any
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    copyBehavior any
    The type of copy behavior for copy sink.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata MetadataItemResponse[]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    block_size_in_mb Any
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    copy_behavior Any
    The type of copy behavior for copy sink.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata Sequence[MetadataItemResponse]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    blockSizeInMB Any
    Indicates the block size(MB) when writing data to blob. Type: integer (or Expression with resultType integer).
    copyBehavior Any
    The type of copy behavior for copy sink.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata List<Property Map>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).

    AzureDataExplorerCommandActivity, AzureDataExplorerCommandActivityArgs

    Command object
    A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
    Name string
    Activity name.
    CommandTimeout object
    Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependency>
    Activity depends on condition.
    Description string
    Activity description.
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    Linked service reference.
    OnInactiveMarkAs string | Pulumi.AzureNative.DataFactory.ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicy
    Activity policy.
    State string | Pulumi.AzureNative.DataFactory.ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserProperty>
    Activity user properties.
    Command interface{}
    A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
    Name string
    Activity name.
    CommandTimeout interface{}
    Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
    DependsOn []ActivityDependency
    Activity depends on condition.
    Description string
    Activity description.
    LinkedServiceName LinkedServiceReference
    Linked service reference.
    OnInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy ActivityPolicy
    Activity policy.
    State string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserProperty
    Activity user properties.
    command Object
    A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
    name String
    Activity name.
    commandTimeout Object
    Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
    dependsOn List<ActivityDependency>
    Activity depends on condition.
    description String
    Activity description.
    linkedServiceName LinkedServiceReference
    Linked service reference.
    onInactiveMarkAs String | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    state String | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserProperty>
    Activity user properties.
    command any
    A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
    name string
    Activity name.
    commandTimeout any
    Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
    dependsOn ActivityDependency[]
    Activity depends on condition.
    description string
    Activity description.
    linkedServiceName LinkedServiceReference
    Linked service reference.
    onInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    state string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserProperty[]
    Activity user properties.
    command Any
    A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
    name str
    Activity name.
    command_timeout Any
    Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
    depends_on Sequence[ActivityDependency]
    Activity depends on condition.
    description str
    Activity description.
    linked_service_name LinkedServiceReference
    Linked service reference.
    on_inactive_mark_as str | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    state str | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserProperty]
    Activity user properties.
    command Any
    A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
    name String
    Activity name.
    commandTimeout Any
    Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    linkedServiceName Property Map
    Linked service reference.
    onInactiveMarkAs String | "Succeeded" | "Failed" | "Skipped"
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy Property Map
    Activity policy.
    state String | "Active" | "Inactive"
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.

    AzureDataExplorerCommandActivityResponse, AzureDataExplorerCommandActivityResponseArgs

    Command object
    A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
    Name string
    Activity name.
    CommandTimeout object
    Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependencyResponse>
    Activity depends on condition.
    Description string
    Activity description.
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    Linked service reference.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicyResponse
    Activity policy.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserPropertyResponse>
    Activity user properties.
    Command interface{}
    A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
    Name string
    Activity name.
    CommandTimeout interface{}
    Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
    DependsOn []ActivityDependencyResponse
    Activity depends on condition.
    Description string
    Activity description.
    LinkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy ActivityPolicyResponse
    Activity policy.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserPropertyResponse
    Activity user properties.
    command Object
    A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
    name String
    Activity name.
    commandTimeout Object
    Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
    dependsOn List<ActivityDependencyResponse>
    Activity depends on condition.
    description String
    Activity description.
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserPropertyResponse>
    Activity user properties.
    command any
    A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
    name string
    Activity name.
    commandTimeout any
    Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
    dependsOn ActivityDependencyResponse[]
    Activity depends on condition.
    description string
    Activity description.
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    onInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    state string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserPropertyResponse[]
    Activity user properties.
    command Any
    A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
    name str
    Activity name.
    command_timeout Any
    Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
    depends_on Sequence[ActivityDependencyResponse]
    Activity depends on condition.
    description str
    Activity description.
    linked_service_name LinkedServiceReferenceResponse
    Linked service reference.
    on_inactive_mark_as str
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    state str
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserPropertyResponse]
    Activity user properties.
    command Any
    A control command, according to the Azure Data Explorer command syntax. Type: string (or Expression with resultType string).
    name String
    Activity name.
    commandTimeout Any
    Control command timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..)
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    linkedServiceName Property Map
    Linked service reference.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy Property Map
    Activity policy.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.

    AzureDataExplorerSink, AzureDataExplorerSinkArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FlushImmediately object
    If set to true, any aggregation will be skipped. Default is false. Type: boolean.
    IngestionMappingAsJson object
    An explicit column mapping description provided in a json format. Type: string.
    IngestionMappingName object
    A name of a pre-created csv mapping that was defined on the target Kusto table. Type: string.
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FlushImmediately interface{}
    If set to true, any aggregation will be skipped. Default is false. Type: boolean.
    IngestionMappingAsJson interface{}
    An explicit column mapping description provided in a json format. Type: string.
    IngestionMappingName interface{}
    A name of a pre-created csv mapping that was defined on the target Kusto table. Type: string.
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    flushImmediately Object
    If set to true, any aggregation will be skipped. Default is false. Type: boolean.
    ingestionMappingAsJson Object
    An explicit column mapping description provided in a json format. Type: string.
    ingestionMappingName Object
    A name of a pre-created csv mapping that was defined on the target Kusto table. Type: string.
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    flushImmediately any
    If set to true, any aggregation will be skipped. Default is false. Type: boolean.
    ingestionMappingAsJson any
    An explicit column mapping description provided in a json format. Type: string.
    ingestionMappingName any
    A name of a pre-created csv mapping that was defined on the target Kusto table. Type: string.
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    flush_immediately Any
    If set to true, any aggregation will be skipped. Default is false. Type: boolean.
    ingestion_mapping_as_json Any
    An explicit column mapping description provided in a json format. Type: string.
    ingestion_mapping_name Any
    A name of a pre-created csv mapping that was defined on the target Kusto table. Type: string.
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    flushImmediately Any
    If set to true, any aggregation will be skipped. Default is false. Type: boolean.
    ingestionMappingAsJson Any
    An explicit column mapping description provided in a json format. Type: string.
    ingestionMappingName Any
    A name of a pre-created csv mapping that was defined on the target Kusto table. Type: string.
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureDataExplorerSinkResponse, AzureDataExplorerSinkResponseArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FlushImmediately object
    If set to true, any aggregation will be skipped. Default is false. Type: boolean.
    IngestionMappingAsJson object
    An explicit column mapping description provided in a json format. Type: string.
    IngestionMappingName object
    A name of a pre-created csv mapping that was defined on the target Kusto table. Type: string.
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FlushImmediately interface{}
    If set to true, any aggregation will be skipped. Default is false. Type: boolean.
    IngestionMappingAsJson interface{}
    An explicit column mapping description provided in a json format. Type: string.
    IngestionMappingName interface{}
    A name of a pre-created csv mapping that was defined on the target Kusto table. Type: string.
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    flushImmediately Object
    If set to true, any aggregation will be skipped. Default is false. Type: boolean.
    ingestionMappingAsJson Object
    An explicit column mapping description provided in a json format. Type: string.
    ingestionMappingName Object
    A name of a pre-created csv mapping that was defined on the target Kusto table. Type: string.
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    flushImmediately any
    If set to true, any aggregation will be skipped. Default is false. Type: boolean.
    ingestionMappingAsJson any
    An explicit column mapping description provided in a json format. Type: string.
    ingestionMappingName any
    A name of a pre-created csv mapping that was defined on the target Kusto table. Type: string.
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    flush_immediately Any
    If set to true, any aggregation will be skipped. Default is false. Type: boolean.
    ingestion_mapping_as_json Any
    An explicit column mapping description provided in a json format. Type: string.
    ingestion_mapping_name Any
    A name of a pre-created csv mapping that was defined on the target Kusto table. Type: string.
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    flushImmediately Any
    If set to true, any aggregation will be skipped. Default is false. Type: boolean.
    ingestionMappingAsJson Any
    An explicit column mapping description provided in a json format. Type: string.
    ingestionMappingName Any
    A name of a pre-created csv mapping that was defined on the target Kusto table. Type: string.
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureDataExplorerSource, AzureDataExplorerSourceArgs

    Query object
    Database query. Should be a Kusto Query Language (KQL) query. Type: string (or Expression with resultType string).
    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    NoTruncation object
    The name of the Boolean option that controls whether truncation is applied to result-sets that go beyond a certain row-count limit.
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    Query interface{}
    Database query. Should be a Kusto Query Language (KQL) query. Type: string (or Expression with resultType string).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    NoTruncation interface{}
    The name of the Boolean option that controls whether truncation is applied to result-sets that go beyond a certain row-count limit.
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    query Object
    Database query. Should be a Kusto Query Language (KQL) query. Type: string (or Expression with resultType string).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    noTruncation Object
    The name of the Boolean option that controls whether truncation is applied to result-sets that go beyond a certain row-count limit.
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    query any
    Database query. Should be a Kusto Query Language (KQL) query. Type: string (or Expression with resultType string).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    noTruncation any
    The name of the Boolean option that controls whether truncation is applied to result-sets that go beyond a certain row-count limit.
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    query Any
    Database query. Should be a Kusto Query Language (KQL) query. Type: string (or Expression with resultType string).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    no_truncation Any
    The name of the Boolean option that controls whether truncation is applied to result-sets that go beyond a certain row-count limit.
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    query Any
    Database query. Should be a Kusto Query Language (KQL) query. Type: string (or Expression with resultType string).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    noTruncation Any
    The name of the Boolean option that controls whether truncation is applied to result-sets that go beyond a certain row-count limit.
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureDataExplorerSourceResponse, AzureDataExplorerSourceResponseArgs

    Query object
    Database query. Should be a Kusto Query Language (KQL) query. Type: string (or Expression with resultType string).
    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    NoTruncation object
    The name of the Boolean option that controls whether truncation is applied to result-sets that go beyond a certain row-count limit.
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    Query interface{}
    Database query. Should be a Kusto Query Language (KQL) query. Type: string (or Expression with resultType string).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    NoTruncation interface{}
    The name of the Boolean option that controls whether truncation is applied to result-sets that go beyond a certain row-count limit.
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    query Object
    Database query. Should be a Kusto Query Language (KQL) query. Type: string (or Expression with resultType string).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    noTruncation Object
    The name of the Boolean option that controls whether truncation is applied to result-sets that go beyond a certain row-count limit.
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    query any
    Database query. Should be a Kusto Query Language (KQL) query. Type: string (or Expression with resultType string).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    noTruncation any
    The name of the Boolean option that controls whether truncation is applied to result-sets that go beyond a certain row-count limit.
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    query Any
    Database query. Should be a Kusto Query Language (KQL) query. Type: string (or Expression with resultType string).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    no_truncation Any
    The name of the Boolean option that controls whether truncation is applied to result-sets that go beyond a certain row-count limit.
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    query Any
    Database query. Should be a Kusto Query Language (KQL) query. Type: string (or Expression with resultType string).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    noTruncation Any
    The name of the Boolean option that controls whether truncation is applied to result-sets that go beyond a certain row-count limit.
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9]))..
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureDataLakeStoreReadSettings, AzureDataLakeStoreReadSettingsArgs

    DeleteFilesAfterCompletion object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    ListAfter object
    Lists files after the value (exclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    ListBefore object
    Lists files before the value (inclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Recursive object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName object
    ADLS wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath object
    ADLS wildcardFolderPath. Type: string (or Expression with resultType string).
    DeleteFilesAfterCompletion interface{}
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery interface{}
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath interface{}
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    ListAfter interface{}
    Lists files after the value (exclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    ListBefore interface{}
    Lists files before the value (inclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd interface{}
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart interface{}
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath interface{}
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Recursive interface{}
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName interface{}
    ADLS wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath interface{}
    ADLS wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    listAfter Object
    Lists files after the value (exclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    listBefore Object
    Lists files before the value (inclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    recursive Object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Object
    ADLS wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Object
    ADLS wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    listAfter any
    Lists files after the value (exclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    listBefore any
    Lists files before the value (inclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    recursive any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName any
    ADLS wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath any
    ADLS wildcardFolderPath. Type: string (or Expression with resultType string).
    delete_files_after_completion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enable_partition_discovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    file_list_path Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    list_after Any
    Lists files after the value (exclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    list_before Any
    Lists files before the value (inclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modified_datetime_end Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modified_datetime_start Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partition_root_path Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcard_file_name Any
    ADLS wildcardFileName. Type: string (or Expression with resultType string).
    wildcard_folder_path Any
    ADLS wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    listAfter Any
    Lists files after the value (exclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    listBefore Any
    Lists files before the value (inclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Any
    ADLS wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Any
    ADLS wildcardFolderPath. Type: string (or Expression with resultType string).

    AzureDataLakeStoreReadSettingsResponse, AzureDataLakeStoreReadSettingsResponseArgs

    DeleteFilesAfterCompletion object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    ListAfter object
    Lists files after the value (exclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    ListBefore object
    Lists files before the value (inclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Recursive object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName object
    ADLS wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath object
    ADLS wildcardFolderPath. Type: string (or Expression with resultType string).
    DeleteFilesAfterCompletion interface{}
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery interface{}
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath interface{}
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    ListAfter interface{}
    Lists files after the value (exclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    ListBefore interface{}
    Lists files before the value (inclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd interface{}
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart interface{}
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath interface{}
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Recursive interface{}
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName interface{}
    ADLS wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath interface{}
    ADLS wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    listAfter Object
    Lists files after the value (exclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    listBefore Object
    Lists files before the value (inclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    recursive Object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Object
    ADLS wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Object
    ADLS wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    listAfter any
    Lists files after the value (exclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    listBefore any
    Lists files before the value (inclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    recursive any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName any
    ADLS wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath any
    ADLS wildcardFolderPath. Type: string (or Expression with resultType string).
    delete_files_after_completion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enable_partition_discovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    file_list_path Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    list_after Any
    Lists files after the value (exclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    list_before Any
    Lists files before the value (inclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modified_datetime_end Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modified_datetime_start Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partition_root_path Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcard_file_name Any
    ADLS wildcardFileName. Type: string (or Expression with resultType string).
    wildcard_folder_path Any
    ADLS wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    listAfter Any
    Lists files after the value (exclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    listBefore Any
    Lists files before the value (inclusive) based on file/folder names’ lexicographical order. Applies under the folderPath in data set, and filter files/sub-folders under the folderPath. Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Any
    ADLS wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Any
    ADLS wildcardFolderPath. Type: string (or Expression with resultType string).

    AzureDataLakeStoreSink, AzureDataLakeStoreSinkArgs

    CopyBehavior object
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnableAdlsSingleFileParallel object
    Single File Parallel.
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    CopyBehavior interface{}
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnableAdlsSingleFileParallel interface{}
    Single File Parallel.
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    copyBehavior Object
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enableAdlsSingleFileParallel Object
    Single File Parallel.
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    copyBehavior any
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enableAdlsSingleFileParallel any
    Single File Parallel.
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    copy_behavior Any
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enable_adls_single_file_parallel Any
    Single File Parallel.
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    copyBehavior Any
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enableAdlsSingleFileParallel Any
    Single File Parallel.
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureDataLakeStoreSinkResponse, AzureDataLakeStoreSinkResponseArgs

    CopyBehavior object
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnableAdlsSingleFileParallel object
    Single File Parallel.
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    CopyBehavior interface{}
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnableAdlsSingleFileParallel interface{}
    Single File Parallel.
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    copyBehavior Object
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enableAdlsSingleFileParallel Object
    Single File Parallel.
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    copyBehavior any
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enableAdlsSingleFileParallel any
    Single File Parallel.
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    copy_behavior Any
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enable_adls_single_file_parallel Any
    Single File Parallel.
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    copyBehavior Any
    The type of copy behavior for copy sink. Type: string (or Expression with resultType string).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enableAdlsSingleFileParallel Any
    Single File Parallel.
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureDataLakeStoreSource, AzureDataLakeStoreSourceArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Recursive object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Recursive interface{}
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive Object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureDataLakeStoreSourceResponse, AzureDataLakeStoreSourceResponseArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Recursive object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Recursive interface{}
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive Object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureDataLakeStoreWriteSettings, AzureDataLakeStoreWriteSettingsArgs

    CopyBehavior object
    The type of copy behavior for copy sink.
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ExpiryDateTime object
    Specifies the expiry time of the written files. The time is applied to the UTC time zone in the format of "2018-12-01T05:00:00Z". Default value is NULL. Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Metadata List<Pulumi.AzureNative.DataFactory.Inputs.MetadataItem>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    CopyBehavior interface{}
    The type of copy behavior for copy sink.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ExpiryDateTime interface{}
    Specifies the expiry time of the written files. The time is applied to the UTC time zone in the format of "2018-12-01T05:00:00Z". Default value is NULL. Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Metadata []MetadataItem
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    copyBehavior Object
    The type of copy behavior for copy sink.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    expiryDateTime Object
    Specifies the expiry time of the written files. The time is applied to the UTC time zone in the format of "2018-12-01T05:00:00Z". Default value is NULL. Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata List<MetadataItem>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    copyBehavior any
    The type of copy behavior for copy sink.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    expiryDateTime any
    Specifies the expiry time of the written files. The time is applied to the UTC time zone in the format of "2018-12-01T05:00:00Z". Default value is NULL. Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata MetadataItem[]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    copy_behavior Any
    The type of copy behavior for copy sink.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    expiry_date_time Any
    Specifies the expiry time of the written files. The time is applied to the UTC time zone in the format of "2018-12-01T05:00:00Z". Default value is NULL. Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata Sequence[MetadataItem]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    copyBehavior Any
    The type of copy behavior for copy sink.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    expiryDateTime Any
    Specifies the expiry time of the written files. The time is applied to the UTC time zone in the format of "2018-12-01T05:00:00Z". Default value is NULL. Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata List<Property Map>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).

    AzureDataLakeStoreWriteSettingsResponse, AzureDataLakeStoreWriteSettingsResponseArgs

    CopyBehavior object
    The type of copy behavior for copy sink.
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ExpiryDateTime object
    Specifies the expiry time of the written files. The time is applied to the UTC time zone in the format of "2018-12-01T05:00:00Z". Default value is NULL. Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Metadata List<Pulumi.AzureNative.DataFactory.Inputs.MetadataItemResponse>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    CopyBehavior interface{}
    The type of copy behavior for copy sink.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ExpiryDateTime interface{}
    Specifies the expiry time of the written files. The time is applied to the UTC time zone in the format of "2018-12-01T05:00:00Z". Default value is NULL. Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Metadata []MetadataItemResponse
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    copyBehavior Object
    The type of copy behavior for copy sink.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    expiryDateTime Object
    Specifies the expiry time of the written files. The time is applied to the UTC time zone in the format of "2018-12-01T05:00:00Z". Default value is NULL. Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata List<MetadataItemResponse>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    copyBehavior any
    The type of copy behavior for copy sink.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    expiryDateTime any
    Specifies the expiry time of the written files. The time is applied to the UTC time zone in the format of "2018-12-01T05:00:00Z". Default value is NULL. Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata MetadataItemResponse[]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    copy_behavior Any
    The type of copy behavior for copy sink.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    expiry_date_time Any
    Specifies the expiry time of the written files. The time is applied to the UTC time zone in the format of "2018-12-01T05:00:00Z". Default value is NULL. Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata Sequence[MetadataItemResponse]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    copyBehavior Any
    The type of copy behavior for copy sink.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    expiryDateTime Any
    Specifies the expiry time of the written files. The time is applied to the UTC time zone in the format of "2018-12-01T05:00:00Z". Default value is NULL. Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata List<Property Map>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).

    AzureDatabricksDeltaLakeExportCommand, AzureDatabricksDeltaLakeExportCommandArgs

    DateFormat object
    Specify the date format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    TimestampFormat object
    Specify the timestamp format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    DateFormat interface{}
    Specify the date format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    TimestampFormat interface{}
    Specify the timestamp format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    dateFormat Object
    Specify the date format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    timestampFormat Object
    Specify the timestamp format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    dateFormat any
    Specify the date format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    timestampFormat any
    Specify the timestamp format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    date_format Any
    Specify the date format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    timestamp_format Any
    Specify the timestamp format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    dateFormat Any
    Specify the date format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    timestampFormat Any
    Specify the timestamp format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).

    AzureDatabricksDeltaLakeExportCommandResponse, AzureDatabricksDeltaLakeExportCommandResponseArgs

    DateFormat object
    Specify the date format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    TimestampFormat object
    Specify the timestamp format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    DateFormat interface{}
    Specify the date format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    TimestampFormat interface{}
    Specify the timestamp format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    dateFormat Object
    Specify the date format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    timestampFormat Object
    Specify the timestamp format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    dateFormat any
    Specify the date format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    timestampFormat any
    Specify the timestamp format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    date_format Any
    Specify the date format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    timestamp_format Any
    Specify the timestamp format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    dateFormat Any
    Specify the date format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    timestampFormat Any
    Specify the timestamp format for the csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).

    AzureDatabricksDeltaLakeImportCommand, AzureDatabricksDeltaLakeImportCommandArgs

    DateFormat object
    Specify the date format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    TimestampFormat object
    Specify the timestamp format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    DateFormat interface{}
    Specify the date format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    TimestampFormat interface{}
    Specify the timestamp format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    dateFormat Object
    Specify the date format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    timestampFormat Object
    Specify the timestamp format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    dateFormat any
    Specify the date format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    timestampFormat any
    Specify the timestamp format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    date_format Any
    Specify the date format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    timestamp_format Any
    Specify the timestamp format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    dateFormat Any
    Specify the date format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    timestampFormat Any
    Specify the timestamp format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).

    AzureDatabricksDeltaLakeImportCommandResponse, AzureDatabricksDeltaLakeImportCommandResponseArgs

    DateFormat object
    Specify the date format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    TimestampFormat object
    Specify the timestamp format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    DateFormat interface{}
    Specify the date format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    TimestampFormat interface{}
    Specify the timestamp format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    dateFormat Object
    Specify the date format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    timestampFormat Object
    Specify the timestamp format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    dateFormat any
    Specify the date format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    timestampFormat any
    Specify the timestamp format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    date_format Any
    Specify the date format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    timestamp_format Any
    Specify the timestamp format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    dateFormat Any
    Specify the date format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).
    timestampFormat Any
    Specify the timestamp format for csv in Azure Databricks Delta Lake Copy. Type: string (or Expression with resultType string).

    AzureDatabricksDeltaLakeSink, AzureDatabricksDeltaLakeSinkArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ImportSettings Pulumi.AzureNative.DataFactory.Inputs.AzureDatabricksDeltaLakeImportCommand
    Azure Databricks Delta Lake import settings.
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    PreCopyScript object
    SQL pre-copy script. Type: string (or Expression with resultType string).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ImportSettings AzureDatabricksDeltaLakeImportCommand
    Azure Databricks Delta Lake import settings.
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    PreCopyScript interface{}
    SQL pre-copy script. Type: string (or Expression with resultType string).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    importSettings AzureDatabricksDeltaLakeImportCommand
    Azure Databricks Delta Lake import settings.
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript Object
    SQL pre-copy script. Type: string (or Expression with resultType string).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    importSettings AzureDatabricksDeltaLakeImportCommand
    Azure Databricks Delta Lake import settings.
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript any
    SQL pre-copy script. Type: string (or Expression with resultType string).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    import_settings AzureDatabricksDeltaLakeImportCommand
    Azure Databricks Delta Lake import settings.
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    pre_copy_script Any
    SQL pre-copy script. Type: string (or Expression with resultType string).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    importSettings Property Map
    Azure Databricks Delta Lake import settings.
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript Any
    SQL pre-copy script. Type: string (or Expression with resultType string).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureDatabricksDeltaLakeSinkResponse, AzureDatabricksDeltaLakeSinkResponseArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ImportSettings Pulumi.AzureNative.DataFactory.Inputs.AzureDatabricksDeltaLakeImportCommandResponse
    Azure Databricks Delta Lake import settings.
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    PreCopyScript object
    SQL pre-copy script. Type: string (or Expression with resultType string).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ImportSettings AzureDatabricksDeltaLakeImportCommandResponse
    Azure Databricks Delta Lake import settings.
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    PreCopyScript interface{}
    SQL pre-copy script. Type: string (or Expression with resultType string).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    importSettings AzureDatabricksDeltaLakeImportCommandResponse
    Azure Databricks Delta Lake import settings.
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript Object
    SQL pre-copy script. Type: string (or Expression with resultType string).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    importSettings AzureDatabricksDeltaLakeImportCommandResponse
    Azure Databricks Delta Lake import settings.
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript any
    SQL pre-copy script. Type: string (or Expression with resultType string).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    import_settings AzureDatabricksDeltaLakeImportCommandResponse
    Azure Databricks Delta Lake import settings.
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    pre_copy_script Any
    SQL pre-copy script. Type: string (or Expression with resultType string).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    importSettings Property Map
    Azure Databricks Delta Lake import settings.
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript Any
    SQL pre-copy script. Type: string (or Expression with resultType string).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureDatabricksDeltaLakeSource, AzureDatabricksDeltaLakeSourceArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ExportSettings Pulumi.AzureNative.DataFactory.Inputs.AzureDatabricksDeltaLakeExportCommand
    Azure Databricks Delta Lake export settings.
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    Azure Databricks Delta Lake Sql query. Type: string (or Expression with resultType string).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ExportSettings AzureDatabricksDeltaLakeExportCommand
    Azure Databricks Delta Lake export settings.
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    Azure Databricks Delta Lake Sql query. Type: string (or Expression with resultType string).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    exportSettings AzureDatabricksDeltaLakeExportCommand
    Azure Databricks Delta Lake export settings.
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    Azure Databricks Delta Lake Sql query. Type: string (or Expression with resultType string).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    exportSettings AzureDatabricksDeltaLakeExportCommand
    Azure Databricks Delta Lake export settings.
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    Azure Databricks Delta Lake Sql query. Type: string (or Expression with resultType string).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    export_settings AzureDatabricksDeltaLakeExportCommand
    Azure Databricks Delta Lake export settings.
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Azure Databricks Delta Lake Sql query. Type: string (or Expression with resultType string).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    exportSettings Property Map
    Azure Databricks Delta Lake export settings.
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Azure Databricks Delta Lake Sql query. Type: string (or Expression with resultType string).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureDatabricksDeltaLakeSourceResponse, AzureDatabricksDeltaLakeSourceResponseArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ExportSettings Pulumi.AzureNative.DataFactory.Inputs.AzureDatabricksDeltaLakeExportCommandResponse
    Azure Databricks Delta Lake export settings.
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    Azure Databricks Delta Lake Sql query. Type: string (or Expression with resultType string).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ExportSettings AzureDatabricksDeltaLakeExportCommandResponse
    Azure Databricks Delta Lake export settings.
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    Azure Databricks Delta Lake Sql query. Type: string (or Expression with resultType string).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    exportSettings AzureDatabricksDeltaLakeExportCommandResponse
    Azure Databricks Delta Lake export settings.
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    Azure Databricks Delta Lake Sql query. Type: string (or Expression with resultType string).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    exportSettings AzureDatabricksDeltaLakeExportCommandResponse
    Azure Databricks Delta Lake export settings.
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    Azure Databricks Delta Lake Sql query. Type: string (or Expression with resultType string).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    export_settings AzureDatabricksDeltaLakeExportCommandResponse
    Azure Databricks Delta Lake export settings.
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Azure Databricks Delta Lake Sql query. Type: string (or Expression with resultType string).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    exportSettings Property Map
    Azure Databricks Delta Lake export settings.
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Azure Databricks Delta Lake Sql query. Type: string (or Expression with resultType string).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureFileStorageReadSettings, AzureFileStorageReadSettingsArgs

    DeleteFilesAfterCompletion object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Prefix object
    The prefix filter for the Azure File name starting from root path. Type: string (or Expression with resultType string).
    Recursive object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName object
    Azure File Storage wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath object
    Azure File Storage wildcardFolderPath. Type: string (or Expression with resultType string).
    DeleteFilesAfterCompletion interface{}
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery interface{}
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath interface{}
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd interface{}
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart interface{}
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath interface{}
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Prefix interface{}
    The prefix filter for the Azure File name starting from root path. Type: string (or Expression with resultType string).
    Recursive interface{}
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName interface{}
    Azure File Storage wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath interface{}
    Azure File Storage wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Object
    The prefix filter for the Azure File name starting from root path. Type: string (or Expression with resultType string).
    recursive Object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Object
    Azure File Storage wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Object
    Azure File Storage wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix any
    The prefix filter for the Azure File name starting from root path. Type: string (or Expression with resultType string).
    recursive any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName any
    Azure File Storage wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath any
    Azure File Storage wildcardFolderPath. Type: string (or Expression with resultType string).
    delete_files_after_completion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enable_partition_discovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    file_list_path Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modified_datetime_end Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modified_datetime_start Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partition_root_path Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Any
    The prefix filter for the Azure File name starting from root path. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcard_file_name Any
    Azure File Storage wildcardFileName. Type: string (or Expression with resultType string).
    wildcard_folder_path Any
    Azure File Storage wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Any
    The prefix filter for the Azure File name starting from root path. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Any
    Azure File Storage wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Any
    Azure File Storage wildcardFolderPath. Type: string (or Expression with resultType string).

    AzureFileStorageReadSettingsResponse, AzureFileStorageReadSettingsResponseArgs

    DeleteFilesAfterCompletion object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Prefix object
    The prefix filter for the Azure File name starting from root path. Type: string (or Expression with resultType string).
    Recursive object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName object
    Azure File Storage wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath object
    Azure File Storage wildcardFolderPath. Type: string (or Expression with resultType string).
    DeleteFilesAfterCompletion interface{}
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    EnablePartitionDiscovery interface{}
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    FileListPath interface{}
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    ModifiedDatetimeEnd interface{}
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    ModifiedDatetimeStart interface{}
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    PartitionRootPath interface{}
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    Prefix interface{}
    The prefix filter for the Azure File name starting from root path. Type: string (or Expression with resultType string).
    Recursive interface{}
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    WildcardFileName interface{}
    Azure File Storage wildcardFileName. Type: string (or Expression with resultType string).
    WildcardFolderPath interface{}
    Azure File Storage wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Object
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Object
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Object
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Object
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Object
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Object
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Object
    The prefix filter for the Azure File name starting from root path. Type: string (or Expression with resultType string).
    recursive Object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Object
    Azure File Storage wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Object
    Azure File Storage wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix any
    The prefix filter for the Azure File name starting from root path. Type: string (or Expression with resultType string).
    recursive any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName any
    Azure File Storage wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath any
    Azure File Storage wildcardFolderPath. Type: string (or Expression with resultType string).
    delete_files_after_completion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enable_partition_discovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    file_list_path Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modified_datetime_end Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modified_datetime_start Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partition_root_path Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Any
    The prefix filter for the Azure File name starting from root path. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcard_file_name Any
    Azure File Storage wildcardFileName. Type: string (or Expression with resultType string).
    wildcard_folder_path Any
    Azure File Storage wildcardFolderPath. Type: string (or Expression with resultType string).
    deleteFilesAfterCompletion Any
    Indicates whether the source files need to be deleted after copy completion. Default is false. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    enablePartitionDiscovery Any
    Indicates whether to enable partition discovery. Type: boolean (or Expression with resultType boolean).
    fileListPath Any
    Point to a text file that lists each file (relative path to the path configured in the dataset) that you want to copy. Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    modifiedDatetimeEnd Any
    The end of file's modified datetime. Type: string (or Expression with resultType string).
    modifiedDatetimeStart Any
    The start of file's modified datetime. Type: string (or Expression with resultType string).
    partitionRootPath Any
    Specify the root path where partition discovery starts from. Type: string (or Expression with resultType string).
    prefix Any
    The prefix filter for the Azure File name starting from root path. Type: string (or Expression with resultType string).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    wildcardFileName Any
    Azure File Storage wildcardFileName. Type: string (or Expression with resultType string).
    wildcardFolderPath Any
    Azure File Storage wildcardFolderPath. Type: string (or Expression with resultType string).

    AzureFileStorageWriteSettings, AzureFileStorageWriteSettingsArgs

    CopyBehavior object
    The type of copy behavior for copy sink.
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Metadata List<Pulumi.AzureNative.DataFactory.Inputs.MetadataItem>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    CopyBehavior interface{}
    The type of copy behavior for copy sink.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Metadata []MetadataItem
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    copyBehavior Object
    The type of copy behavior for copy sink.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata List<MetadataItem>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    copyBehavior any
    The type of copy behavior for copy sink.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata MetadataItem[]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    copy_behavior Any
    The type of copy behavior for copy sink.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata Sequence[MetadataItem]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    copyBehavior Any
    The type of copy behavior for copy sink.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata List<Property Map>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).

    AzureFileStorageWriteSettingsResponse, AzureFileStorageWriteSettingsResponseArgs

    CopyBehavior object
    The type of copy behavior for copy sink.
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Metadata List<Pulumi.AzureNative.DataFactory.Inputs.MetadataItemResponse>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    CopyBehavior interface{}
    The type of copy behavior for copy sink.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Metadata []MetadataItemResponse
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    copyBehavior Object
    The type of copy behavior for copy sink.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata List<MetadataItemResponse>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    copyBehavior any
    The type of copy behavior for copy sink.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata MetadataItemResponse[]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    copy_behavior Any
    The type of copy behavior for copy sink.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata Sequence[MetadataItemResponse]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    copyBehavior Any
    The type of copy behavior for copy sink.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    metadata List<Property Map>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).

    AzureFunctionActivity, AzureFunctionActivityArgs

    FunctionName object
    Name of the Function that the Azure Function Activity will call. Type: string (or Expression with resultType string)
    Method string | Pulumi.AzureNative.DataFactory.AzureFunctionActivityMethod
    Rest API method for target endpoint.
    Name string
    Activity name.
    Body object
    Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string).
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependency>
    Activity depends on condition.
    Description string
    Activity description.
    Headers Dictionary<string, object>
    Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string).
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    Linked service reference.
    OnInactiveMarkAs string | Pulumi.AzureNative.DataFactory.ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicy
    Activity policy.
    State string | Pulumi.AzureNative.DataFactory.ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserProperty>
    Activity user properties.
    FunctionName interface{}
    Name of the Function that the Azure Function Activity will call. Type: string (or Expression with resultType string)
    Method string | AzureFunctionActivityMethod
    Rest API method for target endpoint.
    Name string
    Activity name.
    Body interface{}
    Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string).
    DependsOn []ActivityDependency
    Activity depends on condition.
    Description string
    Activity description.
    Headers map[string]interface{}
    Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string).
    LinkedServiceName LinkedServiceReference
    Linked service reference.
    OnInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy ActivityPolicy
    Activity policy.
    State string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserProperty
    Activity user properties.
    functionName Object
    Name of the Function that the Azure Function Activity will call. Type: string (or Expression with resultType string)
    method String | AzureFunctionActivityMethod
    Rest API method for target endpoint.
    name String
    Activity name.
    body Object
    Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string).
    dependsOn List<ActivityDependency>
    Activity depends on condition.
    description String
    Activity description.
    headers Map<String,Object>
    Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReference
    Linked service reference.
    onInactiveMarkAs String | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    state String | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserProperty>
    Activity user properties.
    functionName any
    Name of the Function that the Azure Function Activity will call. Type: string (or Expression with resultType string)
    method string | AzureFunctionActivityMethod
    Rest API method for target endpoint.
    name string
    Activity name.
    body any
    Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string).
    dependsOn ActivityDependency[]
    Activity depends on condition.
    description string
    Activity description.
    headers {[key: string]: any}
    Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReference
    Linked service reference.
    onInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    state string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserProperty[]
    Activity user properties.
    function_name Any
    Name of the Function that the Azure Function Activity will call. Type: string (or Expression with resultType string)
    method str | AzureFunctionActivityMethod
    Rest API method for target endpoint.
    name str
    Activity name.
    body Any
    Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string).
    depends_on Sequence[ActivityDependency]
    Activity depends on condition.
    description str
    Activity description.
    headers Mapping[str, Any]
    Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string).
    linked_service_name LinkedServiceReference
    Linked service reference.
    on_inactive_mark_as str | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    state str | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserProperty]
    Activity user properties.
    functionName Any
    Name of the Function that the Azure Function Activity will call. Type: string (or Expression with resultType string)
    method String | "GET" | "POST" | "PUT" | "DELETE" | "OPTIONS" | "HEAD" | "TRACE"
    Rest API method for target endpoint.
    name String
    Activity name.
    body Any
    Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string).
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    headers Map<Any>
    Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string).
    linkedServiceName Property Map
    Linked service reference.
    onInactiveMarkAs String | "Succeeded" | "Failed" | "Skipped"
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy Property Map
    Activity policy.
    state String | "Active" | "Inactive"
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.

    AzureFunctionActivityMethod, AzureFunctionActivityMethodArgs

    GET
    GET
    POST
    POST
    PUT
    PUT
    DELETE
    DELETE
    OPTIONS
    OPTIONS
    HEAD
    HEAD
    TRACE
    TRACE
    AzureFunctionActivityMethodGET
    GET
    AzureFunctionActivityMethodPOST
    POST
    AzureFunctionActivityMethodPUT
    PUT
    AzureFunctionActivityMethodDELETE
    DELETE
    AzureFunctionActivityMethodOPTIONS
    OPTIONS
    AzureFunctionActivityMethodHEAD
    HEAD
    AzureFunctionActivityMethodTRACE
    TRACE
    GET
    GET
    POST
    POST
    PUT
    PUT
    DELETE
    DELETE
    OPTIONS
    OPTIONS
    HEAD
    HEAD
    TRACE
    TRACE
    GET
    GET
    POST
    POST
    PUT
    PUT
    DELETE
    DELETE
    OPTIONS
    OPTIONS
    HEAD
    HEAD
    TRACE
    TRACE
    GET
    GET
    POST
    POST
    PUT
    PUT
    DELETE
    DELETE
    OPTIONS
    OPTIONS
    HEAD
    HEAD
    TRACE
    TRACE
    "GET"
    GET
    "POST"
    POST
    "PUT"
    PUT
    "DELETE"
    DELETE
    "OPTIONS"
    OPTIONS
    "HEAD"
    HEAD
    "TRACE"
    TRACE

    AzureFunctionActivityResponse, AzureFunctionActivityResponseArgs

    FunctionName object
    Name of the Function that the Azure Function Activity will call. Type: string (or Expression with resultType string)
    Method string
    Rest API method for target endpoint.
    Name string
    Activity name.
    Body object
    Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string).
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependencyResponse>
    Activity depends on condition.
    Description string
    Activity description.
    Headers Dictionary<string, object>
    Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string).
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    Linked service reference.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicyResponse
    Activity policy.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserPropertyResponse>
    Activity user properties.
    FunctionName interface{}
    Name of the Function that the Azure Function Activity will call. Type: string (or Expression with resultType string)
    Method string
    Rest API method for target endpoint.
    Name string
    Activity name.
    Body interface{}
    Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string).
    DependsOn []ActivityDependencyResponse
    Activity depends on condition.
    Description string
    Activity description.
    Headers map[string]interface{}
    Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string).
    LinkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy ActivityPolicyResponse
    Activity policy.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserPropertyResponse
    Activity user properties.
    functionName Object
    Name of the Function that the Azure Function Activity will call. Type: string (or Expression with resultType string)
    method String
    Rest API method for target endpoint.
    name String
    Activity name.
    body Object
    Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string).
    dependsOn List<ActivityDependencyResponse>
    Activity depends on condition.
    description String
    Activity description.
    headers Map<String,Object>
    Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserPropertyResponse>
    Activity user properties.
    functionName any
    Name of the Function that the Azure Function Activity will call. Type: string (or Expression with resultType string)
    method string
    Rest API method for target endpoint.
    name string
    Activity name.
    body any
    Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string).
    dependsOn ActivityDependencyResponse[]
    Activity depends on condition.
    description string
    Activity description.
    headers {[key: string]: any}
    Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    onInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    state string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserPropertyResponse[]
    Activity user properties.
    function_name Any
    Name of the Function that the Azure Function Activity will call. Type: string (or Expression with resultType string)
    method str
    Rest API method for target endpoint.
    name str
    Activity name.
    body Any
    Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string).
    depends_on Sequence[ActivityDependencyResponse]
    Activity depends on condition.
    description str
    Activity description.
    headers Mapping[str, Any]
    Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string).
    linked_service_name LinkedServiceReferenceResponse
    Linked service reference.
    on_inactive_mark_as str
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    state str
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserPropertyResponse]
    Activity user properties.
    functionName Any
    Name of the Function that the Azure Function Activity will call. Type: string (or Expression with resultType string)
    method String
    Rest API method for target endpoint.
    name String
    Activity name.
    body Any
    Represents the payload that will be sent to the endpoint. Required for POST/PUT method, not allowed for GET method Type: string (or Expression with resultType string).
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    headers Map<Any>
    Represents the headers that will be sent to the request. For example, to set the language and type on a request: "headers" : { "Accept-Language": "en-us", "Content-Type": "application/json" }. Type: string (or Expression with resultType string).
    linkedServiceName Property Map
    Linked service reference.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy Property Map
    Activity policy.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.

    AzureKeyVaultSecretReference, AzureKeyVaultSecretReferenceArgs

    SecretName object
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    Store Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    The Azure Key Vault linked service reference.
    SecretVersion object
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    SecretName interface{}
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    Store LinkedServiceReference
    The Azure Key Vault linked service reference.
    SecretVersion interface{}
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secretName Object
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store LinkedServiceReference
    The Azure Key Vault linked service reference.
    secretVersion Object
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secretName any
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store LinkedServiceReference
    The Azure Key Vault linked service reference.
    secretVersion any
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secret_name Any
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store LinkedServiceReference
    The Azure Key Vault linked service reference.
    secret_version Any
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secretName Any
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store Property Map
    The Azure Key Vault linked service reference.
    secretVersion Any
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).

    AzureKeyVaultSecretReferenceResponse, AzureKeyVaultSecretReferenceResponseArgs

    SecretName object
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    Store Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    The Azure Key Vault linked service reference.
    SecretVersion object
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    SecretName interface{}
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    Store LinkedServiceReferenceResponse
    The Azure Key Vault linked service reference.
    SecretVersion interface{}
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secretName Object
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store LinkedServiceReferenceResponse
    The Azure Key Vault linked service reference.
    secretVersion Object
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secretName any
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store LinkedServiceReferenceResponse
    The Azure Key Vault linked service reference.
    secretVersion any
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secret_name Any
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store LinkedServiceReferenceResponse
    The Azure Key Vault linked service reference.
    secret_version Any
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).
    secretName Any
    The name of the secret in Azure Key Vault. Type: string (or Expression with resultType string).
    store Property Map
    The Azure Key Vault linked service reference.
    secretVersion Any
    The version of the secret in Azure Key Vault. The default value is the latest version of the secret. Type: string (or Expression with resultType string).

    AzureMLBatchExecutionActivity, AzureMLBatchExecutionActivityArgs

    Name string
    Activity name.
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependency>
    Activity depends on condition.
    Description string
    Activity description.
    GlobalParameters Dictionary<string, object>
    Key,Value pairs to be passed to the Azure ML Batch Execution Service endpoint. Keys must match the names of web service parameters defined in the published Azure ML web service. Values will be passed in the GlobalParameters property of the Azure ML batch execution request.
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    Linked service reference.
    OnInactiveMarkAs string | Pulumi.AzureNative.DataFactory.ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicy
    Activity policy.
    State string | Pulumi.AzureNative.DataFactory.ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserProperty>
    Activity user properties.
    WebServiceInputs Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.AzureMLWebServiceFile>
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Inputs to AzureMLWebServiceFile objects specifying the input Blob locations.. This information will be passed in the WebServiceInputs property of the Azure ML batch execution request.
    WebServiceOutputs Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.AzureMLWebServiceFile>
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Outputs to AzureMLWebServiceFile objects specifying the output Blob locations. This information will be passed in the WebServiceOutputs property of the Azure ML batch execution request.
    Name string
    Activity name.
    DependsOn []ActivityDependency
    Activity depends on condition.
    Description string
    Activity description.
    GlobalParameters map[string]interface{}
    Key,Value pairs to be passed to the Azure ML Batch Execution Service endpoint. Keys must match the names of web service parameters defined in the published Azure ML web service. Values will be passed in the GlobalParameters property of the Azure ML batch execution request.
    LinkedServiceName LinkedServiceReference
    Linked service reference.
    OnInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy ActivityPolicy
    Activity policy.
    State string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserProperty
    Activity user properties.
    WebServiceInputs map[string]AzureMLWebServiceFile
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Inputs to AzureMLWebServiceFile objects specifying the input Blob locations.. This information will be passed in the WebServiceInputs property of the Azure ML batch execution request.
    WebServiceOutputs map[string]AzureMLWebServiceFile
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Outputs to AzureMLWebServiceFile objects specifying the output Blob locations. This information will be passed in the WebServiceOutputs property of the Azure ML batch execution request.
    name String
    Activity name.
    dependsOn List<ActivityDependency>
    Activity depends on condition.
    description String
    Activity description.
    globalParameters Map<String,Object>
    Key,Value pairs to be passed to the Azure ML Batch Execution Service endpoint. Keys must match the names of web service parameters defined in the published Azure ML web service. Values will be passed in the GlobalParameters property of the Azure ML batch execution request.
    linkedServiceName LinkedServiceReference
    Linked service reference.
    onInactiveMarkAs String | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    state String | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserProperty>
    Activity user properties.
    webServiceInputs Map<String,AzureMLWebServiceFile>
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Inputs to AzureMLWebServiceFile objects specifying the input Blob locations.. This information will be passed in the WebServiceInputs property of the Azure ML batch execution request.
    webServiceOutputs Map<String,AzureMLWebServiceFile>
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Outputs to AzureMLWebServiceFile objects specifying the output Blob locations. This information will be passed in the WebServiceOutputs property of the Azure ML batch execution request.
    name string
    Activity name.
    dependsOn ActivityDependency[]
    Activity depends on condition.
    description string
    Activity description.
    globalParameters {[key: string]: any}
    Key,Value pairs to be passed to the Azure ML Batch Execution Service endpoint. Keys must match the names of web service parameters defined in the published Azure ML web service. Values will be passed in the GlobalParameters property of the Azure ML batch execution request.
    linkedServiceName LinkedServiceReference
    Linked service reference.
    onInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    state string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserProperty[]
    Activity user properties.
    webServiceInputs {[key: string]: AzureMLWebServiceFile}
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Inputs to AzureMLWebServiceFile objects specifying the input Blob locations.. This information will be passed in the WebServiceInputs property of the Azure ML batch execution request.
    webServiceOutputs {[key: string]: AzureMLWebServiceFile}
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Outputs to AzureMLWebServiceFile objects specifying the output Blob locations. This information will be passed in the WebServiceOutputs property of the Azure ML batch execution request.
    name str
    Activity name.
    depends_on Sequence[ActivityDependency]
    Activity depends on condition.
    description str
    Activity description.
    global_parameters Mapping[str, Any]
    Key,Value pairs to be passed to the Azure ML Batch Execution Service endpoint. Keys must match the names of web service parameters defined in the published Azure ML web service. Values will be passed in the GlobalParameters property of the Azure ML batch execution request.
    linked_service_name LinkedServiceReference
    Linked service reference.
    on_inactive_mark_as str | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    state str | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserProperty]
    Activity user properties.
    web_service_inputs Mapping[str, AzureMLWebServiceFile]
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Inputs to AzureMLWebServiceFile objects specifying the input Blob locations.. This information will be passed in the WebServiceInputs property of the Azure ML batch execution request.
    web_service_outputs Mapping[str, AzureMLWebServiceFile]
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Outputs to AzureMLWebServiceFile objects specifying the output Blob locations. This information will be passed in the WebServiceOutputs property of the Azure ML batch execution request.
    name String
    Activity name.
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    globalParameters Map<Any>
    Key,Value pairs to be passed to the Azure ML Batch Execution Service endpoint. Keys must match the names of web service parameters defined in the published Azure ML web service. Values will be passed in the GlobalParameters property of the Azure ML batch execution request.
    linkedServiceName Property Map
    Linked service reference.
    onInactiveMarkAs String | "Succeeded" | "Failed" | "Skipped"
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy Property Map
    Activity policy.
    state String | "Active" | "Inactive"
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.
    webServiceInputs Map<Property Map>
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Inputs to AzureMLWebServiceFile objects specifying the input Blob locations.. This information will be passed in the WebServiceInputs property of the Azure ML batch execution request.
    webServiceOutputs Map<Property Map>
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Outputs to AzureMLWebServiceFile objects specifying the output Blob locations. This information will be passed in the WebServiceOutputs property of the Azure ML batch execution request.

    AzureMLBatchExecutionActivityResponse, AzureMLBatchExecutionActivityResponseArgs

    Name string
    Activity name.
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependencyResponse>
    Activity depends on condition.
    Description string
    Activity description.
    GlobalParameters Dictionary<string, object>
    Key,Value pairs to be passed to the Azure ML Batch Execution Service endpoint. Keys must match the names of web service parameters defined in the published Azure ML web service. Values will be passed in the GlobalParameters property of the Azure ML batch execution request.
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    Linked service reference.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicyResponse
    Activity policy.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserPropertyResponse>
    Activity user properties.
    WebServiceInputs Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.AzureMLWebServiceFileResponse>
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Inputs to AzureMLWebServiceFile objects specifying the input Blob locations.. This information will be passed in the WebServiceInputs property of the Azure ML batch execution request.
    WebServiceOutputs Dictionary<string, Pulumi.AzureNative.DataFactory.Inputs.AzureMLWebServiceFileResponse>
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Outputs to AzureMLWebServiceFile objects specifying the output Blob locations. This information will be passed in the WebServiceOutputs property of the Azure ML batch execution request.
    Name string
    Activity name.
    DependsOn []ActivityDependencyResponse
    Activity depends on condition.
    Description string
    Activity description.
    GlobalParameters map[string]interface{}
    Key,Value pairs to be passed to the Azure ML Batch Execution Service endpoint. Keys must match the names of web service parameters defined in the published Azure ML web service. Values will be passed in the GlobalParameters property of the Azure ML batch execution request.
    LinkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy ActivityPolicyResponse
    Activity policy.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserPropertyResponse
    Activity user properties.
    WebServiceInputs map[string]AzureMLWebServiceFileResponse
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Inputs to AzureMLWebServiceFile objects specifying the input Blob locations.. This information will be passed in the WebServiceInputs property of the Azure ML batch execution request.
    WebServiceOutputs map[string]AzureMLWebServiceFileResponse
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Outputs to AzureMLWebServiceFile objects specifying the output Blob locations. This information will be passed in the WebServiceOutputs property of the Azure ML batch execution request.
    name String
    Activity name.
    dependsOn List<ActivityDependencyResponse>
    Activity depends on condition.
    description String
    Activity description.
    globalParameters Map<String,Object>
    Key,Value pairs to be passed to the Azure ML Batch Execution Service endpoint. Keys must match the names of web service parameters defined in the published Azure ML web service. Values will be passed in the GlobalParameters property of the Azure ML batch execution request.
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserPropertyResponse>
    Activity user properties.
    webServiceInputs Map<String,AzureMLWebServiceFileResponse>
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Inputs to AzureMLWebServiceFile objects specifying the input Blob locations.. This information will be passed in the WebServiceInputs property of the Azure ML batch execution request.
    webServiceOutputs Map<String,AzureMLWebServiceFileResponse>
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Outputs to AzureMLWebServiceFile objects specifying the output Blob locations. This information will be passed in the WebServiceOutputs property of the Azure ML batch execution request.
    name string
    Activity name.
    dependsOn ActivityDependencyResponse[]
    Activity depends on condition.
    description string
    Activity description.
    globalParameters {[key: string]: any}
    Key,Value pairs to be passed to the Azure ML Batch Execution Service endpoint. Keys must match the names of web service parameters defined in the published Azure ML web service. Values will be passed in the GlobalParameters property of the Azure ML batch execution request.
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    onInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    state string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserPropertyResponse[]
    Activity user properties.
    webServiceInputs {[key: string]: AzureMLWebServiceFileResponse}
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Inputs to AzureMLWebServiceFile objects specifying the input Blob locations.. This information will be passed in the WebServiceInputs property of the Azure ML batch execution request.
    webServiceOutputs {[key: string]: AzureMLWebServiceFileResponse}
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Outputs to AzureMLWebServiceFile objects specifying the output Blob locations. This information will be passed in the WebServiceOutputs property of the Azure ML batch execution request.
    name str
    Activity name.
    depends_on Sequence[ActivityDependencyResponse]
    Activity depends on condition.
    description str
    Activity description.
    global_parameters Mapping[str, Any]
    Key,Value pairs to be passed to the Azure ML Batch Execution Service endpoint. Keys must match the names of web service parameters defined in the published Azure ML web service. Values will be passed in the GlobalParameters property of the Azure ML batch execution request.
    linked_service_name LinkedServiceReferenceResponse
    Linked service reference.
    on_inactive_mark_as str
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    state str
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserPropertyResponse]
    Activity user properties.
    web_service_inputs Mapping[str, AzureMLWebServiceFileResponse]
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Inputs to AzureMLWebServiceFile objects specifying the input Blob locations.. This information will be passed in the WebServiceInputs property of the Azure ML batch execution request.
    web_service_outputs Mapping[str, AzureMLWebServiceFileResponse]
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Outputs to AzureMLWebServiceFile objects specifying the output Blob locations. This information will be passed in the WebServiceOutputs property of the Azure ML batch execution request.
    name String
    Activity name.
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    globalParameters Map<Any>
    Key,Value pairs to be passed to the Azure ML Batch Execution Service endpoint. Keys must match the names of web service parameters defined in the published Azure ML web service. Values will be passed in the GlobalParameters property of the Azure ML batch execution request.
    linkedServiceName Property Map
    Linked service reference.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy Property Map
    Activity policy.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.
    webServiceInputs Map<Property Map>
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Inputs to AzureMLWebServiceFile objects specifying the input Blob locations.. This information will be passed in the WebServiceInputs property of the Azure ML batch execution request.
    webServiceOutputs Map<Property Map>
    Key,Value pairs, mapping the names of Azure ML endpoint's Web Service Outputs to AzureMLWebServiceFile objects specifying the output Blob locations. This information will be passed in the WebServiceOutputs property of the Azure ML batch execution request.

    AzureMLExecutePipelineActivity, AzureMLExecutePipelineActivityArgs

    Name string
    Activity name.
    ContinueOnStepFailure object
    Whether to continue execution of other steps in the PipelineRun if a step fails. This information will be passed in the continueOnStepFailure property of the published pipeline execution request. Type: boolean (or Expression with resultType boolean).
    DataPathAssignments object
    Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object (or Expression with resultType object).
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependency>
    Activity depends on condition.
    Description string
    Activity description.
    ExperimentName object
    Run history experiment name of the pipeline run. This information will be passed in the ExperimentName property of the published pipeline execution request. Type: string (or Expression with resultType string).
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    Linked service reference.
    MlParentRunId object
    The parent Azure ML Service pipeline run id. This information will be passed in the ParentRunId property of the published pipeline execution request. Type: string (or Expression with resultType string).
    MlPipelineEndpointId object
    ID of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    MlPipelineId object
    ID of the published Azure ML pipeline. Type: string (or Expression with resultType string).
    MlPipelineParameters object
    Key,Value pairs to be passed to the published Azure ML pipeline endpoint. Keys must match the names of pipeline parameters defined in the published pipeline. Values will be passed in the ParameterAssignments property of the published pipeline execution request. Type: object with key value pairs (or Expression with resultType object).
    OnInactiveMarkAs string | Pulumi.AzureNative.DataFactory.ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicy
    Activity policy.
    State string | Pulumi.AzureNative.DataFactory.ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserProperty>
    Activity user properties.
    Version object
    Version of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    Name string
    Activity name.
    ContinueOnStepFailure interface{}
    Whether to continue execution of other steps in the PipelineRun if a step fails. This information will be passed in the continueOnStepFailure property of the published pipeline execution request. Type: boolean (or Expression with resultType boolean).
    DataPathAssignments interface{}
    Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object (or Expression with resultType object).
    DependsOn []ActivityDependency
    Activity depends on condition.
    Description string
    Activity description.
    ExperimentName interface{}
    Run history experiment name of the pipeline run. This information will be passed in the ExperimentName property of the published pipeline execution request. Type: string (or Expression with resultType string).
    LinkedServiceName LinkedServiceReference
    Linked service reference.
    MlParentRunId interface{}
    The parent Azure ML Service pipeline run id. This information will be passed in the ParentRunId property of the published pipeline execution request. Type: string (or Expression with resultType string).
    MlPipelineEndpointId interface{}
    ID of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    MlPipelineId interface{}
    ID of the published Azure ML pipeline. Type: string (or Expression with resultType string).
    MlPipelineParameters interface{}
    Key,Value pairs to be passed to the published Azure ML pipeline endpoint. Keys must match the names of pipeline parameters defined in the published pipeline. Values will be passed in the ParameterAssignments property of the published pipeline execution request. Type: object with key value pairs (or Expression with resultType object).
    OnInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy ActivityPolicy
    Activity policy.
    State string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserProperty
    Activity user properties.
    Version interface{}
    Version of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    name String
    Activity name.
    continueOnStepFailure Object
    Whether to continue execution of other steps in the PipelineRun if a step fails. This information will be passed in the continueOnStepFailure property of the published pipeline execution request. Type: boolean (or Expression with resultType boolean).
    dataPathAssignments Object
    Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object (or Expression with resultType object).
    dependsOn List<ActivityDependency>
    Activity depends on condition.
    description String
    Activity description.
    experimentName Object
    Run history experiment name of the pipeline run. This information will be passed in the ExperimentName property of the published pipeline execution request. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReference
    Linked service reference.
    mlParentRunId Object
    The parent Azure ML Service pipeline run id. This information will be passed in the ParentRunId property of the published pipeline execution request. Type: string (or Expression with resultType string).
    mlPipelineEndpointId Object
    ID of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    mlPipelineId Object
    ID of the published Azure ML pipeline. Type: string (or Expression with resultType string).
    mlPipelineParameters Object
    Key,Value pairs to be passed to the published Azure ML pipeline endpoint. Keys must match the names of pipeline parameters defined in the published pipeline. Values will be passed in the ParameterAssignments property of the published pipeline execution request. Type: object with key value pairs (or Expression with resultType object).
    onInactiveMarkAs String | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    state String | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserProperty>
    Activity user properties.
    version Object
    Version of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    name string
    Activity name.
    continueOnStepFailure any
    Whether to continue execution of other steps in the PipelineRun if a step fails. This information will be passed in the continueOnStepFailure property of the published pipeline execution request. Type: boolean (or Expression with resultType boolean).
    dataPathAssignments any
    Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object (or Expression with resultType object).
    dependsOn ActivityDependency[]
    Activity depends on condition.
    description string
    Activity description.
    experimentName any
    Run history experiment name of the pipeline run. This information will be passed in the ExperimentName property of the published pipeline execution request. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReference
    Linked service reference.
    mlParentRunId any
    The parent Azure ML Service pipeline run id. This information will be passed in the ParentRunId property of the published pipeline execution request. Type: string (or Expression with resultType string).
    mlPipelineEndpointId any
    ID of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    mlPipelineId any
    ID of the published Azure ML pipeline. Type: string (or Expression with resultType string).
    mlPipelineParameters any
    Key,Value pairs to be passed to the published Azure ML pipeline endpoint. Keys must match the names of pipeline parameters defined in the published pipeline. Values will be passed in the ParameterAssignments property of the published pipeline execution request. Type: object with key value pairs (or Expression with resultType object).
    onInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    state string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserProperty[]
    Activity user properties.
    version any
    Version of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    name str
    Activity name.
    continue_on_step_failure Any
    Whether to continue execution of other steps in the PipelineRun if a step fails. This information will be passed in the continueOnStepFailure property of the published pipeline execution request. Type: boolean (or Expression with resultType boolean).
    data_path_assignments Any
    Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object (or Expression with resultType object).
    depends_on Sequence[ActivityDependency]
    Activity depends on condition.
    description str
    Activity description.
    experiment_name Any
    Run history experiment name of the pipeline run. This information will be passed in the ExperimentName property of the published pipeline execution request. Type: string (or Expression with resultType string).
    linked_service_name LinkedServiceReference
    Linked service reference.
    ml_parent_run_id Any
    The parent Azure ML Service pipeline run id. This information will be passed in the ParentRunId property of the published pipeline execution request. Type: string (or Expression with resultType string).
    ml_pipeline_endpoint_id Any
    ID of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    ml_pipeline_id Any
    ID of the published Azure ML pipeline. Type: string (or Expression with resultType string).
    ml_pipeline_parameters Any
    Key,Value pairs to be passed to the published Azure ML pipeline endpoint. Keys must match the names of pipeline parameters defined in the published pipeline. Values will be passed in the ParameterAssignments property of the published pipeline execution request. Type: object with key value pairs (or Expression with resultType object).
    on_inactive_mark_as str | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    state str | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserProperty]
    Activity user properties.
    version Any
    Version of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    name String
    Activity name.
    continueOnStepFailure Any
    Whether to continue execution of other steps in the PipelineRun if a step fails. This information will be passed in the continueOnStepFailure property of the published pipeline execution request. Type: boolean (or Expression with resultType boolean).
    dataPathAssignments Any
    Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object (or Expression with resultType object).
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    experimentName Any
    Run history experiment name of the pipeline run. This information will be passed in the ExperimentName property of the published pipeline execution request. Type: string (or Expression with resultType string).
    linkedServiceName Property Map
    Linked service reference.
    mlParentRunId Any
    The parent Azure ML Service pipeline run id. This information will be passed in the ParentRunId property of the published pipeline execution request. Type: string (or Expression with resultType string).
    mlPipelineEndpointId Any
    ID of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    mlPipelineId Any
    ID of the published Azure ML pipeline. Type: string (or Expression with resultType string).
    mlPipelineParameters Any
    Key,Value pairs to be passed to the published Azure ML pipeline endpoint. Keys must match the names of pipeline parameters defined in the published pipeline. Values will be passed in the ParameterAssignments property of the published pipeline execution request. Type: object with key value pairs (or Expression with resultType object).
    onInactiveMarkAs String | "Succeeded" | "Failed" | "Skipped"
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy Property Map
    Activity policy.
    state String | "Active" | "Inactive"
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.
    version Any
    Version of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).

    AzureMLExecutePipelineActivityResponse, AzureMLExecutePipelineActivityResponseArgs

    Name string
    Activity name.
    ContinueOnStepFailure object
    Whether to continue execution of other steps in the PipelineRun if a step fails. This information will be passed in the continueOnStepFailure property of the published pipeline execution request. Type: boolean (or Expression with resultType boolean).
    DataPathAssignments object
    Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object (or Expression with resultType object).
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependencyResponse>
    Activity depends on condition.
    Description string
    Activity description.
    ExperimentName object
    Run history experiment name of the pipeline run. This information will be passed in the ExperimentName property of the published pipeline execution request. Type: string (or Expression with resultType string).
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    Linked service reference.
    MlParentRunId object
    The parent Azure ML Service pipeline run id. This information will be passed in the ParentRunId property of the published pipeline execution request. Type: string (or Expression with resultType string).
    MlPipelineEndpointId object
    ID of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    MlPipelineId object
    ID of the published Azure ML pipeline. Type: string (or Expression with resultType string).
    MlPipelineParameters object
    Key,Value pairs to be passed to the published Azure ML pipeline endpoint. Keys must match the names of pipeline parameters defined in the published pipeline. Values will be passed in the ParameterAssignments property of the published pipeline execution request. Type: object with key value pairs (or Expression with resultType object).
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicyResponse
    Activity policy.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserPropertyResponse>
    Activity user properties.
    Version object
    Version of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    Name string
    Activity name.
    ContinueOnStepFailure interface{}
    Whether to continue execution of other steps in the PipelineRun if a step fails. This information will be passed in the continueOnStepFailure property of the published pipeline execution request. Type: boolean (or Expression with resultType boolean).
    DataPathAssignments interface{}
    Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object (or Expression with resultType object).
    DependsOn []ActivityDependencyResponse
    Activity depends on condition.
    Description string
    Activity description.
    ExperimentName interface{}
    Run history experiment name of the pipeline run. This information will be passed in the ExperimentName property of the published pipeline execution request. Type: string (or Expression with resultType string).
    LinkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    MlParentRunId interface{}
    The parent Azure ML Service pipeline run id. This information will be passed in the ParentRunId property of the published pipeline execution request. Type: string (or Expression with resultType string).
    MlPipelineEndpointId interface{}
    ID of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    MlPipelineId interface{}
    ID of the published Azure ML pipeline. Type: string (or Expression with resultType string).
    MlPipelineParameters interface{}
    Key,Value pairs to be passed to the published Azure ML pipeline endpoint. Keys must match the names of pipeline parameters defined in the published pipeline. Values will be passed in the ParameterAssignments property of the published pipeline execution request. Type: object with key value pairs (or Expression with resultType object).
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy ActivityPolicyResponse
    Activity policy.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserPropertyResponse
    Activity user properties.
    Version interface{}
    Version of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    name String
    Activity name.
    continueOnStepFailure Object
    Whether to continue execution of other steps in the PipelineRun if a step fails. This information will be passed in the continueOnStepFailure property of the published pipeline execution request. Type: boolean (or Expression with resultType boolean).
    dataPathAssignments Object
    Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object (or Expression with resultType object).
    dependsOn List<ActivityDependencyResponse>
    Activity depends on condition.
    description String
    Activity description.
    experimentName Object
    Run history experiment name of the pipeline run. This information will be passed in the ExperimentName property of the published pipeline execution request. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    mlParentRunId Object
    The parent Azure ML Service pipeline run id. This information will be passed in the ParentRunId property of the published pipeline execution request. Type: string (or Expression with resultType string).
    mlPipelineEndpointId Object
    ID of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    mlPipelineId Object
    ID of the published Azure ML pipeline. Type: string (or Expression with resultType string).
    mlPipelineParameters Object
    Key,Value pairs to be passed to the published Azure ML pipeline endpoint. Keys must match the names of pipeline parameters defined in the published pipeline. Values will be passed in the ParameterAssignments property of the published pipeline execution request. Type: object with key value pairs (or Expression with resultType object).
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserPropertyResponse>
    Activity user properties.
    version Object
    Version of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    name string
    Activity name.
    continueOnStepFailure any
    Whether to continue execution of other steps in the PipelineRun if a step fails. This information will be passed in the continueOnStepFailure property of the published pipeline execution request. Type: boolean (or Expression with resultType boolean).
    dataPathAssignments any
    Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object (or Expression with resultType object).
    dependsOn ActivityDependencyResponse[]
    Activity depends on condition.
    description string
    Activity description.
    experimentName any
    Run history experiment name of the pipeline run. This information will be passed in the ExperimentName property of the published pipeline execution request. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    mlParentRunId any
    The parent Azure ML Service pipeline run id. This information will be passed in the ParentRunId property of the published pipeline execution request. Type: string (or Expression with resultType string).
    mlPipelineEndpointId any
    ID of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    mlPipelineId any
    ID of the published Azure ML pipeline. Type: string (or Expression with resultType string).
    mlPipelineParameters any
    Key,Value pairs to be passed to the published Azure ML pipeline endpoint. Keys must match the names of pipeline parameters defined in the published pipeline. Values will be passed in the ParameterAssignments property of the published pipeline execution request. Type: object with key value pairs (or Expression with resultType object).
    onInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    state string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserPropertyResponse[]
    Activity user properties.
    version any
    Version of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    name str
    Activity name.
    continue_on_step_failure Any
    Whether to continue execution of other steps in the PipelineRun if a step fails. This information will be passed in the continueOnStepFailure property of the published pipeline execution request. Type: boolean (or Expression with resultType boolean).
    data_path_assignments Any
    Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object (or Expression with resultType object).
    depends_on Sequence[ActivityDependencyResponse]
    Activity depends on condition.
    description str
    Activity description.
    experiment_name Any
    Run history experiment name of the pipeline run. This information will be passed in the ExperimentName property of the published pipeline execution request. Type: string (or Expression with resultType string).
    linked_service_name LinkedServiceReferenceResponse
    Linked service reference.
    ml_parent_run_id Any
    The parent Azure ML Service pipeline run id. This information will be passed in the ParentRunId property of the published pipeline execution request. Type: string (or Expression with resultType string).
    ml_pipeline_endpoint_id Any
    ID of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    ml_pipeline_id Any
    ID of the published Azure ML pipeline. Type: string (or Expression with resultType string).
    ml_pipeline_parameters Any
    Key,Value pairs to be passed to the published Azure ML pipeline endpoint. Keys must match the names of pipeline parameters defined in the published pipeline. Values will be passed in the ParameterAssignments property of the published pipeline execution request. Type: object with key value pairs (or Expression with resultType object).
    on_inactive_mark_as str
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    state str
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserPropertyResponse]
    Activity user properties.
    version Any
    Version of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    name String
    Activity name.
    continueOnStepFailure Any
    Whether to continue execution of other steps in the PipelineRun if a step fails. This information will be passed in the continueOnStepFailure property of the published pipeline execution request. Type: boolean (or Expression with resultType boolean).
    dataPathAssignments Any
    Dictionary used for changing data path assignments without retraining. Values will be passed in the dataPathAssignments property of the published pipeline execution request. Type: object (or Expression with resultType object).
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    experimentName Any
    Run history experiment name of the pipeline run. This information will be passed in the ExperimentName property of the published pipeline execution request. Type: string (or Expression with resultType string).
    linkedServiceName Property Map
    Linked service reference.
    mlParentRunId Any
    The parent Azure ML Service pipeline run id. This information will be passed in the ParentRunId property of the published pipeline execution request. Type: string (or Expression with resultType string).
    mlPipelineEndpointId Any
    ID of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).
    mlPipelineId Any
    ID of the published Azure ML pipeline. Type: string (or Expression with resultType string).
    mlPipelineParameters Any
    Key,Value pairs to be passed to the published Azure ML pipeline endpoint. Keys must match the names of pipeline parameters defined in the published pipeline. Values will be passed in the ParameterAssignments property of the published pipeline execution request. Type: object with key value pairs (or Expression with resultType object).
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy Property Map
    Activity policy.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.
    version Any
    Version of the published Azure ML pipeline endpoint. Type: string (or Expression with resultType string).

    AzureMLUpdateResourceActivity, AzureMLUpdateResourceActivityArgs

    Name string
    Activity name.
    TrainedModelFilePath object
    The relative file path in trainedModelLinkedService to represent the .ilearner file that will be uploaded by the update operation. Type: string (or Expression with resultType string).
    TrainedModelLinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    Name of Azure Storage linked service holding the .ilearner file that will be uploaded by the update operation.
    TrainedModelName object
    Name of the Trained Model module in the Web Service experiment to be updated. Type: string (or Expression with resultType string).
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependency>
    Activity depends on condition.
    Description string
    Activity description.
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    Linked service reference.
    OnInactiveMarkAs string | Pulumi.AzureNative.DataFactory.ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicy
    Activity policy.
    State string | Pulumi.AzureNative.DataFactory.ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserProperty>
    Activity user properties.
    Name string
    Activity name.
    TrainedModelFilePath interface{}
    The relative file path in trainedModelLinkedService to represent the .ilearner file that will be uploaded by the update operation. Type: string (or Expression with resultType string).
    TrainedModelLinkedServiceName LinkedServiceReference
    Name of Azure Storage linked service holding the .ilearner file that will be uploaded by the update operation.
    TrainedModelName interface{}
    Name of the Trained Model module in the Web Service experiment to be updated. Type: string (or Expression with resultType string).
    DependsOn []ActivityDependency
    Activity depends on condition.
    Description string
    Activity description.
    LinkedServiceName LinkedServiceReference
    Linked service reference.
    OnInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy ActivityPolicy
    Activity policy.
    State string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserProperty
    Activity user properties.
    name String
    Activity name.
    trainedModelFilePath Object
    The relative file path in trainedModelLinkedService to represent the .ilearner file that will be uploaded by the update operation. Type: string (or Expression with resultType string).
    trainedModelLinkedServiceName LinkedServiceReference
    Name of Azure Storage linked service holding the .ilearner file that will be uploaded by the update operation.
    trainedModelName Object
    Name of the Trained Model module in the Web Service experiment to be updated. Type: string (or Expression with resultType string).
    dependsOn List<ActivityDependency>
    Activity depends on condition.
    description String
    Activity description.
    linkedServiceName LinkedServiceReference
    Linked service reference.
    onInactiveMarkAs String | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    state String | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserProperty>
    Activity user properties.
    name string
    Activity name.
    trainedModelFilePath any
    The relative file path in trainedModelLinkedService to represent the .ilearner file that will be uploaded by the update operation. Type: string (or Expression with resultType string).
    trainedModelLinkedServiceName LinkedServiceReference
    Name of Azure Storage linked service holding the .ilearner file that will be uploaded by the update operation.
    trainedModelName any
    Name of the Trained Model module in the Web Service experiment to be updated. Type: string (or Expression with resultType string).
    dependsOn ActivityDependency[]
    Activity depends on condition.
    description string
    Activity description.
    linkedServiceName LinkedServiceReference
    Linked service reference.
    onInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    state string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserProperty[]
    Activity user properties.
    name str
    Activity name.
    trained_model_file_path Any
    The relative file path in trainedModelLinkedService to represent the .ilearner file that will be uploaded by the update operation. Type: string (or Expression with resultType string).
    trained_model_linked_service_name LinkedServiceReference
    Name of Azure Storage linked service holding the .ilearner file that will be uploaded by the update operation.
    trained_model_name Any
    Name of the Trained Model module in the Web Service experiment to be updated. Type: string (or Expression with resultType string).
    depends_on Sequence[ActivityDependency]
    Activity depends on condition.
    description str
    Activity description.
    linked_service_name LinkedServiceReference
    Linked service reference.
    on_inactive_mark_as str | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    state str | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserProperty]
    Activity user properties.
    name String
    Activity name.
    trainedModelFilePath Any
    The relative file path in trainedModelLinkedService to represent the .ilearner file that will be uploaded by the update operation. Type: string (or Expression with resultType string).
    trainedModelLinkedServiceName Property Map
    Name of Azure Storage linked service holding the .ilearner file that will be uploaded by the update operation.
    trainedModelName Any
    Name of the Trained Model module in the Web Service experiment to be updated. Type: string (or Expression with resultType string).
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    linkedServiceName Property Map
    Linked service reference.
    onInactiveMarkAs String | "Succeeded" | "Failed" | "Skipped"
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy Property Map
    Activity policy.
    state String | "Active" | "Inactive"
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.

    AzureMLUpdateResourceActivityResponse, AzureMLUpdateResourceActivityResponseArgs

    Name string
    Activity name.
    TrainedModelFilePath object
    The relative file path in trainedModelLinkedService to represent the .ilearner file that will be uploaded by the update operation. Type: string (or Expression with resultType string).
    TrainedModelLinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    Name of Azure Storage linked service holding the .ilearner file that will be uploaded by the update operation.
    TrainedModelName object
    Name of the Trained Model module in the Web Service experiment to be updated. Type: string (or Expression with resultType string).
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependencyResponse>
    Activity depends on condition.
    Description string
    Activity description.
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    Linked service reference.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicyResponse
    Activity policy.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserPropertyResponse>
    Activity user properties.
    Name string
    Activity name.
    TrainedModelFilePath interface{}
    The relative file path in trainedModelLinkedService to represent the .ilearner file that will be uploaded by the update operation. Type: string (or Expression with resultType string).
    TrainedModelLinkedServiceName LinkedServiceReferenceResponse
    Name of Azure Storage linked service holding the .ilearner file that will be uploaded by the update operation.
    TrainedModelName interface{}
    Name of the Trained Model module in the Web Service experiment to be updated. Type: string (or Expression with resultType string).
    DependsOn []ActivityDependencyResponse
    Activity depends on condition.
    Description string
    Activity description.
    LinkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy ActivityPolicyResponse
    Activity policy.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserPropertyResponse
    Activity user properties.
    name String
    Activity name.
    trainedModelFilePath Object
    The relative file path in trainedModelLinkedService to represent the .ilearner file that will be uploaded by the update operation. Type: string (or Expression with resultType string).
    trainedModelLinkedServiceName LinkedServiceReferenceResponse
    Name of Azure Storage linked service holding the .ilearner file that will be uploaded by the update operation.
    trainedModelName Object
    Name of the Trained Model module in the Web Service experiment to be updated. Type: string (or Expression with resultType string).
    dependsOn List<ActivityDependencyResponse>
    Activity depends on condition.
    description String
    Activity description.
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserPropertyResponse>
    Activity user properties.
    name string
    Activity name.
    trainedModelFilePath any
    The relative file path in trainedModelLinkedService to represent the .ilearner file that will be uploaded by the update operation. Type: string (or Expression with resultType string).
    trainedModelLinkedServiceName LinkedServiceReferenceResponse
    Name of Azure Storage linked service holding the .ilearner file that will be uploaded by the update operation.
    trainedModelName any
    Name of the Trained Model module in the Web Service experiment to be updated. Type: string (or Expression with resultType string).
    dependsOn ActivityDependencyResponse[]
    Activity depends on condition.
    description string
    Activity description.
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    onInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    state string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserPropertyResponse[]
    Activity user properties.
    name str
    Activity name.
    trained_model_file_path Any
    The relative file path in trainedModelLinkedService to represent the .ilearner file that will be uploaded by the update operation. Type: string (or Expression with resultType string).
    trained_model_linked_service_name LinkedServiceReferenceResponse
    Name of Azure Storage linked service holding the .ilearner file that will be uploaded by the update operation.
    trained_model_name Any
    Name of the Trained Model module in the Web Service experiment to be updated. Type: string (or Expression with resultType string).
    depends_on Sequence[ActivityDependencyResponse]
    Activity depends on condition.
    description str
    Activity description.
    linked_service_name LinkedServiceReferenceResponse
    Linked service reference.
    on_inactive_mark_as str
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    state str
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserPropertyResponse]
    Activity user properties.
    name String
    Activity name.
    trainedModelFilePath Any
    The relative file path in trainedModelLinkedService to represent the .ilearner file that will be uploaded by the update operation. Type: string (or Expression with resultType string).
    trainedModelLinkedServiceName Property Map
    Name of Azure Storage linked service holding the .ilearner file that will be uploaded by the update operation.
    trainedModelName Any
    Name of the Trained Model module in the Web Service experiment to be updated. Type: string (or Expression with resultType string).
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    linkedServiceName Property Map
    Linked service reference.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy Property Map
    Activity policy.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.

    AzureMLWebServiceFile, AzureMLWebServiceFileArgs

    FilePath object
    The relative file path, including container name, in the Azure Blob Storage specified by the LinkedService. Type: string (or Expression with resultType string).
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    Reference to an Azure Storage LinkedService, where Azure ML WebService Input/Output file located.
    FilePath interface{}
    The relative file path, including container name, in the Azure Blob Storage specified by the LinkedService. Type: string (or Expression with resultType string).
    LinkedServiceName LinkedServiceReference
    Reference to an Azure Storage LinkedService, where Azure ML WebService Input/Output file located.
    filePath Object
    The relative file path, including container name, in the Azure Blob Storage specified by the LinkedService. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReference
    Reference to an Azure Storage LinkedService, where Azure ML WebService Input/Output file located.
    filePath any
    The relative file path, including container name, in the Azure Blob Storage specified by the LinkedService. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReference
    Reference to an Azure Storage LinkedService, where Azure ML WebService Input/Output file located.
    file_path Any
    The relative file path, including container name, in the Azure Blob Storage specified by the LinkedService. Type: string (or Expression with resultType string).
    linked_service_name LinkedServiceReference
    Reference to an Azure Storage LinkedService, where Azure ML WebService Input/Output file located.
    filePath Any
    The relative file path, including container name, in the Azure Blob Storage specified by the LinkedService. Type: string (or Expression with resultType string).
    linkedServiceName Property Map
    Reference to an Azure Storage LinkedService, where Azure ML WebService Input/Output file located.

    AzureMLWebServiceFileResponse, AzureMLWebServiceFileResponseArgs

    FilePath object
    The relative file path, including container name, in the Azure Blob Storage specified by the LinkedService. Type: string (or Expression with resultType string).
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    Reference to an Azure Storage LinkedService, where Azure ML WebService Input/Output file located.
    FilePath interface{}
    The relative file path, including container name, in the Azure Blob Storage specified by the LinkedService. Type: string (or Expression with resultType string).
    LinkedServiceName LinkedServiceReferenceResponse
    Reference to an Azure Storage LinkedService, where Azure ML WebService Input/Output file located.
    filePath Object
    The relative file path, including container name, in the Azure Blob Storage specified by the LinkedService. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReferenceResponse
    Reference to an Azure Storage LinkedService, where Azure ML WebService Input/Output file located.
    filePath any
    The relative file path, including container name, in the Azure Blob Storage specified by the LinkedService. Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReferenceResponse
    Reference to an Azure Storage LinkedService, where Azure ML WebService Input/Output file located.
    file_path Any
    The relative file path, including container name, in the Azure Blob Storage specified by the LinkedService. Type: string (or Expression with resultType string).
    linked_service_name LinkedServiceReferenceResponse
    Reference to an Azure Storage LinkedService, where Azure ML WebService Input/Output file located.
    filePath Any
    The relative file path, including container name, in the Azure Blob Storage specified by the LinkedService. Type: string (or Expression with resultType string).
    linkedServiceName Property Map
    Reference to an Azure Storage LinkedService, where Azure ML WebService Input/Output file located.

    AzureMariaDBSource, AzureMariaDBSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureMariaDBSourceResponse, AzureMariaDBSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureMySqlSink, AzureMySqlSinkArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    PreCopyScript object
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    PreCopyScript interface{}
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript Object
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript any
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    pre_copy_script Any
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript Any
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureMySqlSinkResponse, AzureMySqlSinkResponseArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    PreCopyScript object
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    PreCopyScript interface{}
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript Object
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript any
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    pre_copy_script Any
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript Any
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureMySqlSource, AzureMySqlSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    Database query. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    Database query. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    Database query. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    Database query. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Database query. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Database query. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureMySqlSourceResponse, AzureMySqlSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    Database query. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    Database query. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    Database query. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    Database query. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Database query. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Database query. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzurePostgreSqlSink, AzurePostgreSqlSinkArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    PreCopyScript object
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    PreCopyScript interface{}
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript Object
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript any
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    pre_copy_script Any
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript Any
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzurePostgreSqlSinkResponse, AzurePostgreSqlSinkResponseArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    PreCopyScript object
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    PreCopyScript interface{}
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript Object
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript any
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    pre_copy_script Any
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript Any
    A query to execute before starting the copy. Type: string (or Expression with resultType string).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzurePostgreSqlSource, AzurePostgreSqlSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzurePostgreSqlSourceResponse, AzurePostgreSqlSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureQueueSink, AzureQueueSinkArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureQueueSinkResponse, AzureQueueSinkResponseArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureSearchIndexSink, AzureSearchIndexSinkArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior string | Pulumi.AzureNative.DataFactory.AzureSearchIndexWriteBehaviorType
    Specify the write behavior when upserting documents into Azure Search Index.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior string | AzureSearchIndexWriteBehaviorType
    Specify the write behavior when upserting documents into Azure Search Index.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior String | AzureSearchIndexWriteBehaviorType
    Specify the write behavior when upserting documents into Azure Search Index.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior string | AzureSearchIndexWriteBehaviorType
    Specify the write behavior when upserting documents into Azure Search Index.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_behavior str | AzureSearchIndexWriteBehaviorType
    Specify the write behavior when upserting documents into Azure Search Index.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior String | "Merge" | "Upload"
    Specify the write behavior when upserting documents into Azure Search Index.

    AzureSearchIndexSinkResponse, AzureSearchIndexSinkResponseArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior string
    Specify the write behavior when upserting documents into Azure Search Index.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior string
    Specify the write behavior when upserting documents into Azure Search Index.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior String
    Specify the write behavior when upserting documents into Azure Search Index.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior string
    Specify the write behavior when upserting documents into Azure Search Index.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_behavior str
    Specify the write behavior when upserting documents into Azure Search Index.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior String
    Specify the write behavior when upserting documents into Azure Search Index.

    AzureSearchIndexWriteBehaviorType, AzureSearchIndexWriteBehaviorTypeArgs

    Merge
    Merge
    Upload
    Upload
    AzureSearchIndexWriteBehaviorTypeMerge
    Merge
    AzureSearchIndexWriteBehaviorTypeUpload
    Upload
    Merge
    Merge
    Upload
    Upload
    Merge
    Merge
    Upload
    Upload
    MERGE
    Merge
    UPLOAD
    Upload
    "Merge"
    Merge
    "Upload"
    Upload

    AzureSqlSink, AzureSqlSinkArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    PreCopyScript object
    SQL pre-copy script. Type: string (or Expression with resultType string).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SqlWriterStoredProcedureName object
    SQL writer stored procedure name. Type: string (or Expression with resultType string).
    SqlWriterTableType object
    SQL writer table type. Type: string (or Expression with resultType string).
    SqlWriterUseTableLock object
    Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean).
    StoredProcedureParameters object
    SQL stored procedure parameters.
    StoredProcedureTableTypeParameterName object
    The stored procedure parameter name of the table type. Type: string (or Expression with resultType string).
    TableOption object
    The option to handle sink table, such as autoCreate. For now only 'autoCreate' value is supported. Type: string (or Expression with resultType string).
    UpsertSettings Pulumi.AzureNative.DataFactory.Inputs.SqlUpsertSettings
    SQL upsert settings.
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior object
    Write behavior when copying data into Azure SQL. Type: SqlWriteBehaviorEnum (or Expression with resultType SqlWriteBehaviorEnum)
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    PreCopyScript interface{}
    SQL pre-copy script. Type: string (or Expression with resultType string).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SqlWriterStoredProcedureName interface{}
    SQL writer stored procedure name. Type: string (or Expression with resultType string).
    SqlWriterTableType interface{}
    SQL writer table type. Type: string (or Expression with resultType string).
    SqlWriterUseTableLock interface{}
    Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean).
    StoredProcedureParameters interface{}
    SQL stored procedure parameters.
    StoredProcedureTableTypeParameterName interface{}
    The stored procedure parameter name of the table type. Type: string (or Expression with resultType string).
    TableOption interface{}
    The option to handle sink table, such as autoCreate. For now only 'autoCreate' value is supported. Type: string (or Expression with resultType string).
    UpsertSettings SqlUpsertSettings
    SQL upsert settings.
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior interface{}
    Write behavior when copying data into Azure SQL. Type: SqlWriteBehaviorEnum (or Expression with resultType SqlWriteBehaviorEnum)
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript Object
    SQL pre-copy script. Type: string (or Expression with resultType string).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sqlWriterStoredProcedureName Object
    SQL writer stored procedure name. Type: string (or Expression with resultType string).
    sqlWriterTableType Object
    SQL writer table type. Type: string (or Expression with resultType string).
    sqlWriterUseTableLock Object
    Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean).
    storedProcedureParameters Object
    SQL stored procedure parameters.
    storedProcedureTableTypeParameterName Object
    The stored procedure parameter name of the table type. Type: string (or Expression with resultType string).
    tableOption Object
    The option to handle sink table, such as autoCreate. For now only 'autoCreate' value is supported. Type: string (or Expression with resultType string).
    upsertSettings SqlUpsertSettings
    SQL upsert settings.
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior Object
    Write behavior when copying data into Azure SQL. Type: SqlWriteBehaviorEnum (or Expression with resultType SqlWriteBehaviorEnum)
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript any
    SQL pre-copy script. Type: string (or Expression with resultType string).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sqlWriterStoredProcedureName any
    SQL writer stored procedure name. Type: string (or Expression with resultType string).
    sqlWriterTableType any
    SQL writer table type. Type: string (or Expression with resultType string).
    sqlWriterUseTableLock any
    Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean).
    storedProcedureParameters any
    SQL stored procedure parameters.
    storedProcedureTableTypeParameterName any
    The stored procedure parameter name of the table type. Type: string (or Expression with resultType string).
    tableOption any
    The option to handle sink table, such as autoCreate. For now only 'autoCreate' value is supported. Type: string (or Expression with resultType string).
    upsertSettings SqlUpsertSettings
    SQL upsert settings.
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior any
    Write behavior when copying data into Azure SQL. Type: SqlWriteBehaviorEnum (or Expression with resultType SqlWriteBehaviorEnum)
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    pre_copy_script Any
    SQL pre-copy script. Type: string (or Expression with resultType string).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sql_writer_stored_procedure_name Any
    SQL writer stored procedure name. Type: string (or Expression with resultType string).
    sql_writer_table_type Any
    SQL writer table type. Type: string (or Expression with resultType string).
    sql_writer_use_table_lock Any
    Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean).
    stored_procedure_parameters Any
    SQL stored procedure parameters.
    stored_procedure_table_type_parameter_name Any
    The stored procedure parameter name of the table type. Type: string (or Expression with resultType string).
    table_option Any
    The option to handle sink table, such as autoCreate. For now only 'autoCreate' value is supported. Type: string (or Expression with resultType string).
    upsert_settings SqlUpsertSettings
    SQL upsert settings.
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_behavior Any
    Write behavior when copying data into Azure SQL. Type: SqlWriteBehaviorEnum (or Expression with resultType SqlWriteBehaviorEnum)
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript Any
    SQL pre-copy script. Type: string (or Expression with resultType string).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sqlWriterStoredProcedureName Any
    SQL writer stored procedure name. Type: string (or Expression with resultType string).
    sqlWriterTableType Any
    SQL writer table type. Type: string (or Expression with resultType string).
    sqlWriterUseTableLock Any
    Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean).
    storedProcedureParameters Any
    SQL stored procedure parameters.
    storedProcedureTableTypeParameterName Any
    The stored procedure parameter name of the table type. Type: string (or Expression with resultType string).
    tableOption Any
    The option to handle sink table, such as autoCreate. For now only 'autoCreate' value is supported. Type: string (or Expression with resultType string).
    upsertSettings Property Map
    SQL upsert settings.
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior Any
    Write behavior when copying data into Azure SQL. Type: SqlWriteBehaviorEnum (or Expression with resultType SqlWriteBehaviorEnum)

    AzureSqlSinkResponse, AzureSqlSinkResponseArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    PreCopyScript object
    SQL pre-copy script. Type: string (or Expression with resultType string).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SqlWriterStoredProcedureName object
    SQL writer stored procedure name. Type: string (or Expression with resultType string).
    SqlWriterTableType object
    SQL writer table type. Type: string (or Expression with resultType string).
    SqlWriterUseTableLock object
    Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean).
    StoredProcedureParameters object
    SQL stored procedure parameters.
    StoredProcedureTableTypeParameterName object
    The stored procedure parameter name of the table type. Type: string (or Expression with resultType string).
    TableOption object
    The option to handle sink table, such as autoCreate. For now only 'autoCreate' value is supported. Type: string (or Expression with resultType string).
    UpsertSettings Pulumi.AzureNative.DataFactory.Inputs.SqlUpsertSettingsResponse
    SQL upsert settings.
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior object
    Write behavior when copying data into Azure SQL. Type: SqlWriteBehaviorEnum (or Expression with resultType SqlWriteBehaviorEnum)
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    PreCopyScript interface{}
    SQL pre-copy script. Type: string (or Expression with resultType string).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SqlWriterStoredProcedureName interface{}
    SQL writer stored procedure name. Type: string (or Expression with resultType string).
    SqlWriterTableType interface{}
    SQL writer table type. Type: string (or Expression with resultType string).
    SqlWriterUseTableLock interface{}
    Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean).
    StoredProcedureParameters interface{}
    SQL stored procedure parameters.
    StoredProcedureTableTypeParameterName interface{}
    The stored procedure parameter name of the table type. Type: string (or Expression with resultType string).
    TableOption interface{}
    The option to handle sink table, such as autoCreate. For now only 'autoCreate' value is supported. Type: string (or Expression with resultType string).
    UpsertSettings SqlUpsertSettingsResponse
    SQL upsert settings.
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior interface{}
    Write behavior when copying data into Azure SQL. Type: SqlWriteBehaviorEnum (or Expression with resultType SqlWriteBehaviorEnum)
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript Object
    SQL pre-copy script. Type: string (or Expression with resultType string).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sqlWriterStoredProcedureName Object
    SQL writer stored procedure name. Type: string (or Expression with resultType string).
    sqlWriterTableType Object
    SQL writer table type. Type: string (or Expression with resultType string).
    sqlWriterUseTableLock Object
    Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean).
    storedProcedureParameters Object
    SQL stored procedure parameters.
    storedProcedureTableTypeParameterName Object
    The stored procedure parameter name of the table type. Type: string (or Expression with resultType string).
    tableOption Object
    The option to handle sink table, such as autoCreate. For now only 'autoCreate' value is supported. Type: string (or Expression with resultType string).
    upsertSettings SqlUpsertSettingsResponse
    SQL upsert settings.
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior Object
    Write behavior when copying data into Azure SQL. Type: SqlWriteBehaviorEnum (or Expression with resultType SqlWriteBehaviorEnum)
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript any
    SQL pre-copy script. Type: string (or Expression with resultType string).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sqlWriterStoredProcedureName any
    SQL writer stored procedure name. Type: string (or Expression with resultType string).
    sqlWriterTableType any
    SQL writer table type. Type: string (or Expression with resultType string).
    sqlWriterUseTableLock any
    Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean).
    storedProcedureParameters any
    SQL stored procedure parameters.
    storedProcedureTableTypeParameterName any
    The stored procedure parameter name of the table type. Type: string (or Expression with resultType string).
    tableOption any
    The option to handle sink table, such as autoCreate. For now only 'autoCreate' value is supported. Type: string (or Expression with resultType string).
    upsertSettings SqlUpsertSettingsResponse
    SQL upsert settings.
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior any
    Write behavior when copying data into Azure SQL. Type: SqlWriteBehaviorEnum (or Expression with resultType SqlWriteBehaviorEnum)
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    pre_copy_script Any
    SQL pre-copy script. Type: string (or Expression with resultType string).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sql_writer_stored_procedure_name Any
    SQL writer stored procedure name. Type: string (or Expression with resultType string).
    sql_writer_table_type Any
    SQL writer table type. Type: string (or Expression with resultType string).
    sql_writer_use_table_lock Any
    Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean).
    stored_procedure_parameters Any
    SQL stored procedure parameters.
    stored_procedure_table_type_parameter_name Any
    The stored procedure parameter name of the table type. Type: string (or Expression with resultType string).
    table_option Any
    The option to handle sink table, such as autoCreate. For now only 'autoCreate' value is supported. Type: string (or Expression with resultType string).
    upsert_settings SqlUpsertSettingsResponse
    SQL upsert settings.
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_behavior Any
    Write behavior when copying data into Azure SQL. Type: SqlWriteBehaviorEnum (or Expression with resultType SqlWriteBehaviorEnum)
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    preCopyScript Any
    SQL pre-copy script. Type: string (or Expression with resultType string).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sqlWriterStoredProcedureName Any
    SQL writer stored procedure name. Type: string (or Expression with resultType string).
    sqlWriterTableType Any
    SQL writer table type. Type: string (or Expression with resultType string).
    sqlWriterUseTableLock Any
    Whether to use table lock during bulk copy. Type: boolean (or Expression with resultType boolean).
    storedProcedureParameters Any
    SQL stored procedure parameters.
    storedProcedureTableTypeParameterName Any
    The stored procedure parameter name of the table type. Type: string (or Expression with resultType string).
    tableOption Any
    The option to handle sink table, such as autoCreate. For now only 'autoCreate' value is supported. Type: string (or Expression with resultType string).
    upsertSettings Property Map
    SQL upsert settings.
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior Any
    Write behavior when copying data into Azure SQL. Type: SqlWriteBehaviorEnum (or Expression with resultType SqlWriteBehaviorEnum)

    AzureSqlSource, AzureSqlSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IsolationLevel object
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    PartitionOption object
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string).
    PartitionSettings Pulumi.AzureNative.DataFactory.Inputs.SqlPartitionSettings
    The settings that will be leveraged for Sql source partitioning.
    ProduceAdditionalTypes object
    Which additional types to produce.
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SqlReaderQuery object
    SQL reader query. Type: string (or Expression with resultType string).
    SqlReaderStoredProcedureName object
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    StoredProcedureParameters object
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IsolationLevel interface{}
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    PartitionOption interface{}
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string).
    PartitionSettings SqlPartitionSettings
    The settings that will be leveraged for Sql source partitioning.
    ProduceAdditionalTypes interface{}
    Which additional types to produce.
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SqlReaderQuery interface{}
    SQL reader query. Type: string (or Expression with resultType string).
    SqlReaderStoredProcedureName interface{}
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    StoredProcedureParameters interface{}
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    isolationLevel Object
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    partitionOption Object
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string).
    partitionSettings SqlPartitionSettings
    The settings that will be leveraged for Sql source partitioning.
    produceAdditionalTypes Object
    Which additional types to produce.
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sqlReaderQuery Object
    SQL reader query. Type: string (or Expression with resultType string).
    sqlReaderStoredProcedureName Object
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    storedProcedureParameters Object
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    isolationLevel any
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    partitionOption any
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string).
    partitionSettings SqlPartitionSettings
    The settings that will be leveraged for Sql source partitioning.
    produceAdditionalTypes any
    Which additional types to produce.
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sqlReaderQuery any
    SQL reader query. Type: string (or Expression with resultType string).
    sqlReaderStoredProcedureName any
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    storedProcedureParameters any
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    isolation_level Any
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    partition_option Any
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string).
    partition_settings SqlPartitionSettings
    The settings that will be leveraged for Sql source partitioning.
    produce_additional_types Any
    Which additional types to produce.
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sql_reader_query Any
    SQL reader query. Type: string (or Expression with resultType string).
    sql_reader_stored_procedure_name Any
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    stored_procedure_parameters Any
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    isolationLevel Any
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    partitionOption Any
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string).
    partitionSettings Property Map
    The settings that will be leveraged for Sql source partitioning.
    produceAdditionalTypes Any
    Which additional types to produce.
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sqlReaderQuery Any
    SQL reader query. Type: string (or Expression with resultType string).
    sqlReaderStoredProcedureName Any
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    storedProcedureParameters Any
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".

    AzureSqlSourceResponse, AzureSqlSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IsolationLevel object
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    PartitionOption object
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string).
    PartitionSettings Pulumi.AzureNative.DataFactory.Inputs.SqlPartitionSettingsResponse
    The settings that will be leveraged for Sql source partitioning.
    ProduceAdditionalTypes object
    Which additional types to produce.
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SqlReaderQuery object
    SQL reader query. Type: string (or Expression with resultType string).
    SqlReaderStoredProcedureName object
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    StoredProcedureParameters object
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IsolationLevel interface{}
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    PartitionOption interface{}
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string).
    PartitionSettings SqlPartitionSettingsResponse
    The settings that will be leveraged for Sql source partitioning.
    ProduceAdditionalTypes interface{}
    Which additional types to produce.
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SqlReaderQuery interface{}
    SQL reader query. Type: string (or Expression with resultType string).
    SqlReaderStoredProcedureName interface{}
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    StoredProcedureParameters interface{}
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    isolationLevel Object
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    partitionOption Object
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string).
    partitionSettings SqlPartitionSettingsResponse
    The settings that will be leveraged for Sql source partitioning.
    produceAdditionalTypes Object
    Which additional types to produce.
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sqlReaderQuery Object
    SQL reader query. Type: string (or Expression with resultType string).
    sqlReaderStoredProcedureName Object
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    storedProcedureParameters Object
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    isolationLevel any
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    partitionOption any
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string).
    partitionSettings SqlPartitionSettingsResponse
    The settings that will be leveraged for Sql source partitioning.
    produceAdditionalTypes any
    Which additional types to produce.
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sqlReaderQuery any
    SQL reader query. Type: string (or Expression with resultType string).
    sqlReaderStoredProcedureName any
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    storedProcedureParameters any
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    isolation_level Any
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    partition_option Any
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string).
    partition_settings SqlPartitionSettingsResponse
    The settings that will be leveraged for Sql source partitioning.
    produce_additional_types Any
    Which additional types to produce.
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sql_reader_query Any
    SQL reader query. Type: string (or Expression with resultType string).
    sql_reader_stored_procedure_name Any
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    stored_procedure_parameters Any
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    isolationLevel Any
    Specifies the transaction locking behavior for the SQL source. Allowed values: ReadCommitted/ReadUncommitted/RepeatableRead/Serializable/Snapshot. The default value is ReadCommitted. Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    partitionOption Any
    The partition mechanism that will be used for Sql read in parallel. Possible values include: "None", "PhysicalPartitionsOfTable", "DynamicRange". Type: string (or Expression with resultType string).
    partitionSettings Property Map
    The settings that will be leveraged for Sql source partitioning.
    produceAdditionalTypes Any
    Which additional types to produce.
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sqlReaderQuery Any
    SQL reader query. Type: string (or Expression with resultType string).
    sqlReaderStoredProcedureName Any
    Name of the stored procedure for a SQL Database source. This cannot be used at the same time as SqlReaderQuery. Type: string (or Expression with resultType string).
    storedProcedureParameters Any
    Value and type setting for stored procedure parameters. Example: "{Parameter1: {value: "1", type: "int"}}".

    AzureTableSink, AzureTableSinkArgs

    AzureTableDefaultPartitionKeyValue object
    Azure Table default partition key value. Type: string (or Expression with resultType string).
    AzureTableInsertType object
    Azure Table insert type. Type: string (or Expression with resultType string).
    AzureTablePartitionKeyName object
    Azure Table partition key name. Type: string (or Expression with resultType string).
    AzureTableRowKeyName object
    Azure Table row key name. Type: string (or Expression with resultType string).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AzureTableDefaultPartitionKeyValue interface{}
    Azure Table default partition key value. Type: string (or Expression with resultType string).
    AzureTableInsertType interface{}
    Azure Table insert type. Type: string (or Expression with resultType string).
    AzureTablePartitionKeyName interface{}
    Azure Table partition key name. Type: string (or Expression with resultType string).
    AzureTableRowKeyName interface{}
    Azure Table row key name. Type: string (or Expression with resultType string).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    azureTableDefaultPartitionKeyValue Object
    Azure Table default partition key value. Type: string (or Expression with resultType string).
    azureTableInsertType Object
    Azure Table insert type. Type: string (or Expression with resultType string).
    azureTablePartitionKeyName Object
    Azure Table partition key name. Type: string (or Expression with resultType string).
    azureTableRowKeyName Object
    Azure Table row key name. Type: string (or Expression with resultType string).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    azureTableDefaultPartitionKeyValue any
    Azure Table default partition key value. Type: string (or Expression with resultType string).
    azureTableInsertType any
    Azure Table insert type. Type: string (or Expression with resultType string).
    azureTablePartitionKeyName any
    Azure Table partition key name. Type: string (or Expression with resultType string).
    azureTableRowKeyName any
    Azure Table row key name. Type: string (or Expression with resultType string).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    azure_table_default_partition_key_value Any
    Azure Table default partition key value. Type: string (or Expression with resultType string).
    azure_table_insert_type Any
    Azure Table insert type. Type: string (or Expression with resultType string).
    azure_table_partition_key_name Any
    Azure Table partition key name. Type: string (or Expression with resultType string).
    azure_table_row_key_name Any
    Azure Table row key name. Type: string (or Expression with resultType string).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    azureTableDefaultPartitionKeyValue Any
    Azure Table default partition key value. Type: string (or Expression with resultType string).
    azureTableInsertType Any
    Azure Table insert type. Type: string (or Expression with resultType string).
    azureTablePartitionKeyName Any
    Azure Table partition key name. Type: string (or Expression with resultType string).
    azureTableRowKeyName Any
    Azure Table row key name. Type: string (or Expression with resultType string).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureTableSinkResponse, AzureTableSinkResponseArgs

    AzureTableDefaultPartitionKeyValue object
    Azure Table default partition key value. Type: string (or Expression with resultType string).
    AzureTableInsertType object
    Azure Table insert type. Type: string (or Expression with resultType string).
    AzureTablePartitionKeyName object
    Azure Table partition key name. Type: string (or Expression with resultType string).
    AzureTableRowKeyName object
    Azure Table row key name. Type: string (or Expression with resultType string).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AzureTableDefaultPartitionKeyValue interface{}
    Azure Table default partition key value. Type: string (or Expression with resultType string).
    AzureTableInsertType interface{}
    Azure Table insert type. Type: string (or Expression with resultType string).
    AzureTablePartitionKeyName interface{}
    Azure Table partition key name. Type: string (or Expression with resultType string).
    AzureTableRowKeyName interface{}
    Azure Table row key name. Type: string (or Expression with resultType string).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    azureTableDefaultPartitionKeyValue Object
    Azure Table default partition key value. Type: string (or Expression with resultType string).
    azureTableInsertType Object
    Azure Table insert type. Type: string (or Expression with resultType string).
    azureTablePartitionKeyName Object
    Azure Table partition key name. Type: string (or Expression with resultType string).
    azureTableRowKeyName Object
    Azure Table row key name. Type: string (or Expression with resultType string).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    azureTableDefaultPartitionKeyValue any
    Azure Table default partition key value. Type: string (or Expression with resultType string).
    azureTableInsertType any
    Azure Table insert type. Type: string (or Expression with resultType string).
    azureTablePartitionKeyName any
    Azure Table partition key name. Type: string (or Expression with resultType string).
    azureTableRowKeyName any
    Azure Table row key name. Type: string (or Expression with resultType string).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    azure_table_default_partition_key_value Any
    Azure Table default partition key value. Type: string (or Expression with resultType string).
    azure_table_insert_type Any
    Azure Table insert type. Type: string (or Expression with resultType string).
    azure_table_partition_key_name Any
    Azure Table partition key name. Type: string (or Expression with resultType string).
    azure_table_row_key_name Any
    Azure Table row key name. Type: string (or Expression with resultType string).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    azureTableDefaultPartitionKeyValue Any
    Azure Table default partition key value. Type: string (or Expression with resultType string).
    azureTableInsertType Any
    Azure Table insert type. Type: string (or Expression with resultType string).
    azureTablePartitionKeyName Any
    Azure Table partition key name. Type: string (or Expression with resultType string).
    azureTableRowKeyName Any
    Azure Table row key name. Type: string (or Expression with resultType string).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureTableSource, AzureTableSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    AzureTableSourceIgnoreTableNotFound object
    Azure Table source ignore table not found. Type: boolean (or Expression with resultType boolean).
    AzureTableSourceQuery object
    Azure Table source query. Type: string (or Expression with resultType string).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    AzureTableSourceIgnoreTableNotFound interface{}
    Azure Table source ignore table not found. Type: boolean (or Expression with resultType boolean).
    AzureTableSourceQuery interface{}
    Azure Table source query. Type: string (or Expression with resultType string).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    azureTableSourceIgnoreTableNotFound Object
    Azure Table source ignore table not found. Type: boolean (or Expression with resultType boolean).
    azureTableSourceQuery Object
    Azure Table source query. Type: string (or Expression with resultType string).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    azureTableSourceIgnoreTableNotFound any
    Azure Table source ignore table not found. Type: boolean (or Expression with resultType boolean).
    azureTableSourceQuery any
    Azure Table source query. Type: string (or Expression with resultType string).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    azure_table_source_ignore_table_not_found Any
    Azure Table source ignore table not found. Type: boolean (or Expression with resultType boolean).
    azure_table_source_query Any
    Azure Table source query. Type: string (or Expression with resultType string).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    azureTableSourceIgnoreTableNotFound Any
    Azure Table source ignore table not found. Type: boolean (or Expression with resultType boolean).
    azureTableSourceQuery Any
    Azure Table source query. Type: string (or Expression with resultType string).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    AzureTableSourceResponse, AzureTableSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    AzureTableSourceIgnoreTableNotFound object
    Azure Table source ignore table not found. Type: boolean (or Expression with resultType boolean).
    AzureTableSourceQuery object
    Azure Table source query. Type: string (or Expression with resultType string).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    AzureTableSourceIgnoreTableNotFound interface{}
    Azure Table source ignore table not found. Type: boolean (or Expression with resultType boolean).
    AzureTableSourceQuery interface{}
    Azure Table source query. Type: string (or Expression with resultType string).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    azureTableSourceIgnoreTableNotFound Object
    Azure Table source ignore table not found. Type: boolean (or Expression with resultType boolean).
    azureTableSourceQuery Object
    Azure Table source query. Type: string (or Expression with resultType string).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    azureTableSourceIgnoreTableNotFound any
    Azure Table source ignore table not found. Type: boolean (or Expression with resultType boolean).
    azureTableSourceQuery any
    Azure Table source query. Type: string (or Expression with resultType string).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    azure_table_source_ignore_table_not_found Any
    Azure Table source ignore table not found. Type: boolean (or Expression with resultType boolean).
    azure_table_source_query Any
    Azure Table source query. Type: string (or Expression with resultType string).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    azureTableSourceIgnoreTableNotFound Any
    Azure Table source ignore table not found. Type: boolean (or Expression with resultType boolean).
    azureTableSourceQuery Any
    Azure Table source query. Type: string (or Expression with resultType string).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    BigDataPoolParametrizationReference, BigDataPoolParametrizationReferenceArgs

    ReferenceName object
    Reference big data pool name. Type: string (or Expression with resultType string).
    Type string | Pulumi.AzureNative.DataFactory.BigDataPoolReferenceType
    Big data pool reference type.
    ReferenceName interface{}
    Reference big data pool name. Type: string (or Expression with resultType string).
    Type string | BigDataPoolReferenceType
    Big data pool reference type.
    referenceName Object
    Reference big data pool name. Type: string (or Expression with resultType string).
    type String | BigDataPoolReferenceType
    Big data pool reference type.
    referenceName any
    Reference big data pool name. Type: string (or Expression with resultType string).
    type string | BigDataPoolReferenceType
    Big data pool reference type.
    reference_name Any
    Reference big data pool name. Type: string (or Expression with resultType string).
    type str | BigDataPoolReferenceType
    Big data pool reference type.
    referenceName Any
    Reference big data pool name. Type: string (or Expression with resultType string).
    type String | "BigDataPoolReference"
    Big data pool reference type.

    BigDataPoolParametrizationReferenceResponse, BigDataPoolParametrizationReferenceResponseArgs

    ReferenceName object
    Reference big data pool name. Type: string (or Expression with resultType string).
    Type string
    Big data pool reference type.
    ReferenceName interface{}
    Reference big data pool name. Type: string (or Expression with resultType string).
    Type string
    Big data pool reference type.
    referenceName Object
    Reference big data pool name. Type: string (or Expression with resultType string).
    type String
    Big data pool reference type.
    referenceName any
    Reference big data pool name. Type: string (or Expression with resultType string).
    type string
    Big data pool reference type.
    reference_name Any
    Reference big data pool name. Type: string (or Expression with resultType string).
    type str
    Big data pool reference type.
    referenceName Any
    Reference big data pool name. Type: string (or Expression with resultType string).
    type String
    Big data pool reference type.

    BigDataPoolReferenceType, BigDataPoolReferenceTypeArgs

    BigDataPoolReference
    BigDataPoolReference
    BigDataPoolReferenceTypeBigDataPoolReference
    BigDataPoolReference
    BigDataPoolReference
    BigDataPoolReference
    BigDataPoolReference
    BigDataPoolReference
    BIG_DATA_POOL_REFERENCE
    BigDataPoolReference
    "BigDataPoolReference"
    BigDataPoolReference

    BinaryReadSettings, BinaryReadSettingsArgs

    BinaryReadSettingsResponse, BinaryReadSettingsResponseArgs

    BinarySink, BinarySinkArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSWriteSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageWriteSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreWriteSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageWriteSettings | Pulumi.AzureNative.DataFactory.Inputs.FileServerWriteSettings | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseWriteSettings | Pulumi.AzureNative.DataFactory.Inputs.SftpWriteSettings
    Binary store settings.
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings AzureBlobFSWriteSettings | AzureBlobStorageWriteSettings | AzureDataLakeStoreWriteSettings | AzureFileStorageWriteSettings | FileServerWriteSettings | LakeHouseWriteSettings | SftpWriteSettings
    Binary store settings.
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AzureBlobFSWriteSettings | AzureBlobStorageWriteSettings | AzureDataLakeStoreWriteSettings | AzureFileStorageWriteSettings | FileServerWriteSettings | LakeHouseWriteSettings | SftpWriteSettings
    Binary store settings.
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AzureBlobFSWriteSettings | AzureBlobStorageWriteSettings | AzureDataLakeStoreWriteSettings | AzureFileStorageWriteSettings | FileServerWriteSettings | LakeHouseWriteSettings | SftpWriteSettings
    Binary store settings.
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    store_settings AzureBlobFSWriteSettings | AzureBlobStorageWriteSettings | AzureDataLakeStoreWriteSettings | AzureFileStorageWriteSettings | FileServerWriteSettings | LakeHouseWriteSettings | SftpWriteSettings
    Binary store settings.
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    Binary store settings.
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    BinarySinkResponse, BinarySinkResponseArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSWriteSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageWriteSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreWriteSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageWriteSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.FileServerWriteSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseWriteSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.SftpWriteSettingsResponse
    Binary store settings.
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings AzureBlobFSWriteSettingsResponse | AzureBlobStorageWriteSettingsResponse | AzureDataLakeStoreWriteSettingsResponse | AzureFileStorageWriteSettingsResponse | FileServerWriteSettingsResponse | LakeHouseWriteSettingsResponse | SftpWriteSettingsResponse
    Binary store settings.
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AzureBlobFSWriteSettingsResponse | AzureBlobStorageWriteSettingsResponse | AzureDataLakeStoreWriteSettingsResponse | AzureFileStorageWriteSettingsResponse | FileServerWriteSettingsResponse | LakeHouseWriteSettingsResponse | SftpWriteSettingsResponse
    Binary store settings.
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AzureBlobFSWriteSettingsResponse | AzureBlobStorageWriteSettingsResponse | AzureDataLakeStoreWriteSettingsResponse | AzureFileStorageWriteSettingsResponse | FileServerWriteSettingsResponse | LakeHouseWriteSettingsResponse | SftpWriteSettingsResponse
    Binary store settings.
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    store_settings AzureBlobFSWriteSettingsResponse | AzureBlobStorageWriteSettingsResponse | AzureDataLakeStoreWriteSettingsResponse | AzureFileStorageWriteSettingsResponse | FileServerWriteSettingsResponse | LakeHouseWriteSettingsResponse | SftpWriteSettingsResponse
    Binary store settings.
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    Binary store settings.
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    BinarySource, BinarySourceArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FormatSettings Pulumi.AzureNative.DataFactory.Inputs.BinaryReadSettings
    Binary format settings.
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3ReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageReadSettings | Pulumi.AzureNative.DataFactory.Inputs.FileServerReadSettings | Pulumi.AzureNative.DataFactory.Inputs.FtpReadSettings | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageReadSettings | Pulumi.AzureNative.DataFactory.Inputs.HdfsReadSettings | Pulumi.AzureNative.DataFactory.Inputs.HttpReadSettings | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseReadSettings | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageReadSettings | Pulumi.AzureNative.DataFactory.Inputs.SftpReadSettings
    Binary store settings.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FormatSettings BinaryReadSettings
    Binary format settings.
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings AmazonS3CompatibleReadSettings | AmazonS3ReadSettings | AzureBlobFSReadSettings | AzureBlobStorageReadSettings | AzureDataLakeStoreReadSettings | AzureFileStorageReadSettings | FileServerReadSettings | FtpReadSettings | GoogleCloudStorageReadSettings | HdfsReadSettings | HttpReadSettings | LakeHouseReadSettings | OracleCloudStorageReadSettings | SftpReadSettings
    Binary store settings.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings BinaryReadSettings
    Binary format settings.
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AmazonS3CompatibleReadSettings | AmazonS3ReadSettings | AzureBlobFSReadSettings | AzureBlobStorageReadSettings | AzureDataLakeStoreReadSettings | AzureFileStorageReadSettings | FileServerReadSettings | FtpReadSettings | GoogleCloudStorageReadSettings | HdfsReadSettings | HttpReadSettings | LakeHouseReadSettings | OracleCloudStorageReadSettings | SftpReadSettings
    Binary store settings.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings BinaryReadSettings
    Binary format settings.
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AmazonS3CompatibleReadSettings | AmazonS3ReadSettings | AzureBlobFSReadSettings | AzureBlobStorageReadSettings | AzureDataLakeStoreReadSettings | AzureFileStorageReadSettings | FileServerReadSettings | FtpReadSettings | GoogleCloudStorageReadSettings | HdfsReadSettings | HttpReadSettings | LakeHouseReadSettings | OracleCloudStorageReadSettings | SftpReadSettings
    Binary store settings.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    format_settings BinaryReadSettings
    Binary format settings.
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    store_settings AmazonS3CompatibleReadSettings | AmazonS3ReadSettings | AzureBlobFSReadSettings | AzureBlobStorageReadSettings | AzureDataLakeStoreReadSettings | AzureFileStorageReadSettings | FileServerReadSettings | FtpReadSettings | GoogleCloudStorageReadSettings | HdfsReadSettings | HttpReadSettings | LakeHouseReadSettings | OracleCloudStorageReadSettings | SftpReadSettings
    Binary store settings.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings Property Map
    Binary format settings.
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    Binary store settings.

    BinarySourceResponse, BinarySourceResponseArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FormatSettings Pulumi.AzureNative.DataFactory.Inputs.BinaryReadSettingsResponse
    Binary format settings.
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3ReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.FileServerReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.FtpReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.HdfsReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.HttpReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.SftpReadSettingsResponse
    Binary store settings.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FormatSettings BinaryReadSettingsResponse
    Binary format settings.
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings AmazonS3CompatibleReadSettingsResponse | AmazonS3ReadSettingsResponse | AzureBlobFSReadSettingsResponse | AzureBlobStorageReadSettingsResponse | AzureDataLakeStoreReadSettingsResponse | AzureFileStorageReadSettingsResponse | FileServerReadSettingsResponse | FtpReadSettingsResponse | GoogleCloudStorageReadSettingsResponse | HdfsReadSettingsResponse | HttpReadSettingsResponse | LakeHouseReadSettingsResponse | OracleCloudStorageReadSettingsResponse | SftpReadSettingsResponse
    Binary store settings.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings BinaryReadSettingsResponse
    Binary format settings.
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AmazonS3CompatibleReadSettingsResponse | AmazonS3ReadSettingsResponse | AzureBlobFSReadSettingsResponse | AzureBlobStorageReadSettingsResponse | AzureDataLakeStoreReadSettingsResponse | AzureFileStorageReadSettingsResponse | FileServerReadSettingsResponse | FtpReadSettingsResponse | GoogleCloudStorageReadSettingsResponse | HdfsReadSettingsResponse | HttpReadSettingsResponse | LakeHouseReadSettingsResponse | OracleCloudStorageReadSettingsResponse | SftpReadSettingsResponse
    Binary store settings.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings BinaryReadSettingsResponse
    Binary format settings.
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AmazonS3CompatibleReadSettingsResponse | AmazonS3ReadSettingsResponse | AzureBlobFSReadSettingsResponse | AzureBlobStorageReadSettingsResponse | AzureDataLakeStoreReadSettingsResponse | AzureFileStorageReadSettingsResponse | FileServerReadSettingsResponse | FtpReadSettingsResponse | GoogleCloudStorageReadSettingsResponse | HdfsReadSettingsResponse | HttpReadSettingsResponse | LakeHouseReadSettingsResponse | OracleCloudStorageReadSettingsResponse | SftpReadSettingsResponse
    Binary store settings.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    format_settings BinaryReadSettingsResponse
    Binary format settings.
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    store_settings AmazonS3CompatibleReadSettingsResponse | AmazonS3ReadSettingsResponse | AzureBlobFSReadSettingsResponse | AzureBlobStorageReadSettingsResponse | AzureDataLakeStoreReadSettingsResponse | AzureFileStorageReadSettingsResponse | FileServerReadSettingsResponse | FtpReadSettingsResponse | GoogleCloudStorageReadSettingsResponse | HdfsReadSettingsResponse | HttpReadSettingsResponse | LakeHouseReadSettingsResponse | OracleCloudStorageReadSettingsResponse | SftpReadSettingsResponse
    Binary store settings.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings Property Map
    Binary format settings.
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    Binary store settings.

    BlobSink, BlobSinkArgs

    BlobWriterAddHeader object
    Blob writer add header. Type: boolean (or Expression with resultType boolean).
    BlobWriterDateTimeFormat object
    Blob writer date time format. Type: string (or Expression with resultType string).
    BlobWriterOverwriteFiles object
    Blob writer overwrite files. Type: boolean (or Expression with resultType boolean).
    CopyBehavior object
    The type of copy behavior for copy sink.
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    Metadata List<Pulumi.AzureNative.DataFactory.Inputs.MetadataItem>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    BlobWriterAddHeader interface{}
    Blob writer add header. Type: boolean (or Expression with resultType boolean).
    BlobWriterDateTimeFormat interface{}
    Blob writer date time format. Type: string (or Expression with resultType string).
    BlobWriterOverwriteFiles interface{}
    Blob writer overwrite files. Type: boolean (or Expression with resultType boolean).
    CopyBehavior interface{}
    The type of copy behavior for copy sink.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    Metadata []MetadataItem
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    blobWriterAddHeader Object
    Blob writer add header. Type: boolean (or Expression with resultType boolean).
    blobWriterDateTimeFormat Object
    Blob writer date time format. Type: string (or Expression with resultType string).
    blobWriterOverwriteFiles Object
    Blob writer overwrite files. Type: boolean (or Expression with resultType boolean).
    copyBehavior Object
    The type of copy behavior for copy sink.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    metadata List<MetadataItem>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    blobWriterAddHeader any
    Blob writer add header. Type: boolean (or Expression with resultType boolean).
    blobWriterDateTimeFormat any
    Blob writer date time format. Type: string (or Expression with resultType string).
    blobWriterOverwriteFiles any
    Blob writer overwrite files. Type: boolean (or Expression with resultType boolean).
    copyBehavior any
    The type of copy behavior for copy sink.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    metadata MetadataItem[]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    blob_writer_add_header Any
    Blob writer add header. Type: boolean (or Expression with resultType boolean).
    blob_writer_date_time_format Any
    Blob writer date time format. Type: string (or Expression with resultType string).
    blob_writer_overwrite_files Any
    Blob writer overwrite files. Type: boolean (or Expression with resultType boolean).
    copy_behavior Any
    The type of copy behavior for copy sink.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    metadata Sequence[MetadataItem]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    blobWriterAddHeader Any
    Blob writer add header. Type: boolean (or Expression with resultType boolean).
    blobWriterDateTimeFormat Any
    Blob writer date time format. Type: string (or Expression with resultType string).
    blobWriterOverwriteFiles Any
    Blob writer overwrite files. Type: boolean (or Expression with resultType boolean).
    copyBehavior Any
    The type of copy behavior for copy sink.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    metadata List<Property Map>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    BlobSinkResponse, BlobSinkResponseArgs

    BlobWriterAddHeader object
    Blob writer add header. Type: boolean (or Expression with resultType boolean).
    BlobWriterDateTimeFormat object
    Blob writer date time format. Type: string (or Expression with resultType string).
    BlobWriterOverwriteFiles object
    Blob writer overwrite files. Type: boolean (or Expression with resultType boolean).
    CopyBehavior object
    The type of copy behavior for copy sink.
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    Metadata List<Pulumi.AzureNative.DataFactory.Inputs.MetadataItemResponse>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    BlobWriterAddHeader interface{}
    Blob writer add header. Type: boolean (or Expression with resultType boolean).
    BlobWriterDateTimeFormat interface{}
    Blob writer date time format. Type: string (or Expression with resultType string).
    BlobWriterOverwriteFiles interface{}
    Blob writer overwrite files. Type: boolean (or Expression with resultType boolean).
    CopyBehavior interface{}
    The type of copy behavior for copy sink.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    Metadata []MetadataItemResponse
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    blobWriterAddHeader Object
    Blob writer add header. Type: boolean (or Expression with resultType boolean).
    blobWriterDateTimeFormat Object
    Blob writer date time format. Type: string (or Expression with resultType string).
    blobWriterOverwriteFiles Object
    Blob writer overwrite files. Type: boolean (or Expression with resultType boolean).
    copyBehavior Object
    The type of copy behavior for copy sink.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    metadata List<MetadataItemResponse>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    blobWriterAddHeader any
    Blob writer add header. Type: boolean (or Expression with resultType boolean).
    blobWriterDateTimeFormat any
    Blob writer date time format. Type: string (or Expression with resultType string).
    blobWriterOverwriteFiles any
    Blob writer overwrite files. Type: boolean (or Expression with resultType boolean).
    copyBehavior any
    The type of copy behavior for copy sink.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    metadata MetadataItemResponse[]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    blob_writer_add_header Any
    Blob writer add header. Type: boolean (or Expression with resultType boolean).
    blob_writer_date_time_format Any
    Blob writer date time format. Type: string (or Expression with resultType string).
    blob_writer_overwrite_files Any
    Blob writer overwrite files. Type: boolean (or Expression with resultType boolean).
    copy_behavior Any
    The type of copy behavior for copy sink.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    metadata Sequence[MetadataItemResponse]
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    blobWriterAddHeader Any
    Blob writer add header. Type: boolean (or Expression with resultType boolean).
    blobWriterDateTimeFormat Any
    Blob writer date time format. Type: string (or Expression with resultType string).
    blobWriterOverwriteFiles Any
    Blob writer overwrite files. Type: boolean (or Expression with resultType boolean).
    copyBehavior Any
    The type of copy behavior for copy sink.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    metadata List<Property Map>
    Specify the custom metadata to be added to sink data. Type: array of objects (or Expression with resultType array of objects).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    BlobSource, BlobSourceArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Recursive object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    SkipHeaderLineCount object
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    TreatEmptyAsNull object
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Recursive interface{}
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    SkipHeaderLineCount interface{}
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    TreatEmptyAsNull interface{}
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive Object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    skipHeaderLineCount Object
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    treatEmptyAsNull Object
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    skipHeaderLineCount any
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    treatEmptyAsNull any
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    skip_header_line_count Any
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    treat_empty_as_null Any
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    skipHeaderLineCount Any
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    treatEmptyAsNull Any
    Treat empty as null. Type: boolean (or Expression with resultType boolean).

    BlobSourceResponse, BlobSourceResponseArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Recursive object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    SkipHeaderLineCount object
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    TreatEmptyAsNull object
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Recursive interface{}
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    SkipHeaderLineCount interface{}
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    TreatEmptyAsNull interface{}
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive Object
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    skipHeaderLineCount Object
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    treatEmptyAsNull Object
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    skipHeaderLineCount any
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    treatEmptyAsNull any
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    skip_header_line_count Any
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    treat_empty_as_null Any
    Treat empty as null. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    recursive Any
    If true, files under the folder path will be read recursively. Default is true. Type: boolean (or Expression with resultType boolean).
    skipHeaderLineCount Any
    Number of header lines to skip from each blob. Type: integer (or Expression with resultType integer).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    treatEmptyAsNull Any
    Treat empty as null. Type: boolean (or Expression with resultType boolean).

    CassandraSource, CassandraSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    ConsistencyLevel string | Pulumi.AzureNative.DataFactory.CassandraSourceReadConsistencyLevels
    The consistency level specifies how many Cassandra servers must respond to a read request before returning data to the client application. Cassandra checks the specified number of Cassandra servers for data to satisfy the read request. Must be one of cassandraSourceReadConsistencyLevels. The default value is 'ONE'. It is case-insensitive.
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    Database query. Should be a SQL-92 query expression or Cassandra Query Language (CQL) command. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    ConsistencyLevel string | CassandraSourceReadConsistencyLevels
    The consistency level specifies how many Cassandra servers must respond to a read request before returning data to the client application. Cassandra checks the specified number of Cassandra servers for data to satisfy the read request. Must be one of cassandraSourceReadConsistencyLevels. The default value is 'ONE'. It is case-insensitive.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    Database query. Should be a SQL-92 query expression or Cassandra Query Language (CQL) command. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    consistencyLevel String | CassandraSourceReadConsistencyLevels
    The consistency level specifies how many Cassandra servers must respond to a read request before returning data to the client application. Cassandra checks the specified number of Cassandra servers for data to satisfy the read request. Must be one of cassandraSourceReadConsistencyLevels. The default value is 'ONE'. It is case-insensitive.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    Database query. Should be a SQL-92 query expression or Cassandra Query Language (CQL) command. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    consistencyLevel string | CassandraSourceReadConsistencyLevels
    The consistency level specifies how many Cassandra servers must respond to a read request before returning data to the client application. Cassandra checks the specified number of Cassandra servers for data to satisfy the read request. Must be one of cassandraSourceReadConsistencyLevels. The default value is 'ONE'. It is case-insensitive.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    Database query. Should be a SQL-92 query expression or Cassandra Query Language (CQL) command. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    consistency_level str | CassandraSourceReadConsistencyLevels
    The consistency level specifies how many Cassandra servers must respond to a read request before returning data to the client application. Cassandra checks the specified number of Cassandra servers for data to satisfy the read request. Must be one of cassandraSourceReadConsistencyLevels. The default value is 'ONE'. It is case-insensitive.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Database query. Should be a SQL-92 query expression or Cassandra Query Language (CQL) command. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    consistencyLevel String | "ALL" | "EACH_QUORUM" | "QUORUM" | "LOCAL_QUORUM" | "ONE" | "TWO" | "THREE" | "LOCAL_ONE" | "SERIAL" | "LOCAL_SERIAL"
    The consistency level specifies how many Cassandra servers must respond to a read request before returning data to the client application. Cassandra checks the specified number of Cassandra servers for data to satisfy the read request. Must be one of cassandraSourceReadConsistencyLevels. The default value is 'ONE'. It is case-insensitive.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Database query. Should be a SQL-92 query expression or Cassandra Query Language (CQL) command. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    CassandraSourceReadConsistencyLevels, CassandraSourceReadConsistencyLevelsArgs

    ALL
    ALL
    EACH_QUORUM
    EACH_QUORUM
    QUORUM
    QUORUM
    LOCAL_QUORUM
    LOCAL_QUORUM
    ONE
    ONE
    TWO
    TWO
    THREE
    THREE
    LOCAL_ONE
    LOCAL_ONE
    SERIAL
    SERIAL
    LOCAL_SERIAL
    LOCAL_SERIAL
    CassandraSourceReadConsistencyLevelsALL
    ALL
    CassandraSourceReadConsistencyLevels_EACH_QUORUM
    EACH_QUORUM
    CassandraSourceReadConsistencyLevelsQUORUM
    QUORUM
    CassandraSourceReadConsistencyLevels_LOCAL_QUORUM
    LOCAL_QUORUM
    CassandraSourceReadConsistencyLevelsONE
    ONE
    CassandraSourceReadConsistencyLevelsTWO
    TWO
    CassandraSourceReadConsistencyLevelsTHREE
    THREE
    CassandraSourceReadConsistencyLevels_LOCAL_ONE
    LOCAL_ONE
    CassandraSourceReadConsistencyLevelsSERIAL
    SERIAL
    CassandraSourceReadConsistencyLevels_LOCAL_SERIAL
    LOCAL_SERIAL
    ALL
    ALL
    EACH_QUORUM
    EACH_QUORUM
    QUORUM
    QUORUM
    LOCAL_QUORUM
    LOCAL_QUORUM
    ONE
    ONE
    TWO
    TWO
    THREE
    THREE
    LOCAL_ONE
    LOCAL_ONE
    SERIAL
    SERIAL
    LOCAL_SERIAL
    LOCAL_SERIAL
    ALL
    ALL
    EACH_QUORUM
    EACH_QUORUM
    QUORUM
    QUORUM
    LOCAL_QUORUM
    LOCAL_QUORUM
    ONE
    ONE
    TWO
    TWO
    THREE
    THREE
    LOCAL_ONE
    LOCAL_ONE
    SERIAL
    SERIAL
    LOCAL_SERIAL
    LOCAL_SERIAL
    ALL
    ALL
    EAC_H_QUORUM
    EACH_QUORUM
    QUORUM
    QUORUM
    LOCA_L_QUORUM
    LOCAL_QUORUM
    ONE
    ONE
    TWO
    TWO
    THREE
    THREE
    LOCA_L_ONE
    LOCAL_ONE
    SERIAL
    SERIAL
    LOCA_L_SERIAL
    LOCAL_SERIAL
    "ALL"
    ALL
    "EACH_QUORUM"
    EACH_QUORUM
    "QUORUM"
    QUORUM
    "LOCAL_QUORUM"
    LOCAL_QUORUM
    "ONE"
    ONE
    "TWO"
    TWO
    "THREE"
    THREE
    "LOCAL_ONE"
    LOCAL_ONE
    "SERIAL"
    SERIAL
    "LOCAL_SERIAL"
    LOCAL_SERIAL

    CassandraSourceResponse, CassandraSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    ConsistencyLevel string
    The consistency level specifies how many Cassandra servers must respond to a read request before returning data to the client application. Cassandra checks the specified number of Cassandra servers for data to satisfy the read request. Must be one of cassandraSourceReadConsistencyLevels. The default value is 'ONE'. It is case-insensitive.
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    Database query. Should be a SQL-92 query expression or Cassandra Query Language (CQL) command. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    ConsistencyLevel string
    The consistency level specifies how many Cassandra servers must respond to a read request before returning data to the client application. Cassandra checks the specified number of Cassandra servers for data to satisfy the read request. Must be one of cassandraSourceReadConsistencyLevels. The default value is 'ONE'. It is case-insensitive.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    Database query. Should be a SQL-92 query expression or Cassandra Query Language (CQL) command. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    consistencyLevel String
    The consistency level specifies how many Cassandra servers must respond to a read request before returning data to the client application. Cassandra checks the specified number of Cassandra servers for data to satisfy the read request. Must be one of cassandraSourceReadConsistencyLevels. The default value is 'ONE'. It is case-insensitive.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    Database query. Should be a SQL-92 query expression or Cassandra Query Language (CQL) command. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    consistencyLevel string
    The consistency level specifies how many Cassandra servers must respond to a read request before returning data to the client application. Cassandra checks the specified number of Cassandra servers for data to satisfy the read request. Must be one of cassandraSourceReadConsistencyLevels. The default value is 'ONE'. It is case-insensitive.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    Database query. Should be a SQL-92 query expression or Cassandra Query Language (CQL) command. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    consistency_level str
    The consistency level specifies how many Cassandra servers must respond to a read request before returning data to the client application. Cassandra checks the specified number of Cassandra servers for data to satisfy the read request. Must be one of cassandraSourceReadConsistencyLevels. The default value is 'ONE'. It is case-insensitive.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Database query. Should be a SQL-92 query expression or Cassandra Query Language (CQL) command. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    consistencyLevel String
    The consistency level specifies how many Cassandra servers must respond to a read request before returning data to the client application. Cassandra checks the specified number of Cassandra servers for data to satisfy the read request. Must be one of cassandraSourceReadConsistencyLevels. The default value is 'ONE'. It is case-insensitive.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Database query. Should be a SQL-92 query expression or Cassandra Query Language (CQL) command. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    CommonDataServiceForAppsSink, CommonDataServiceForAppsSinkArgs

    WriteBehavior string | Pulumi.AzureNative.DataFactory.DynamicsSinkWriteBehavior
    The write behavior for the operation.
    AlternateKeyName object
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IgnoreNullValues object
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior string | DynamicsSinkWriteBehavior
    The write behavior for the operation.
    AlternateKeyName interface{}
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IgnoreNullValues interface{}
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior String | DynamicsSinkWriteBehavior
    The write behavior for the operation.
    alternateKeyName Object
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignoreNullValues Object
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior string | DynamicsSinkWriteBehavior
    The write behavior for the operation.
    alternateKeyName any
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignoreNullValues any
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_behavior str | DynamicsSinkWriteBehavior
    The write behavior for the operation.
    alternate_key_name Any
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignore_null_values Any
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior String | "Upsert"
    The write behavior for the operation.
    alternateKeyName Any
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignoreNullValues Any
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    CommonDataServiceForAppsSinkResponse, CommonDataServiceForAppsSinkResponseArgs

    WriteBehavior string
    The write behavior for the operation.
    AlternateKeyName object
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IgnoreNullValues object
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior string
    The write behavior for the operation.
    AlternateKeyName interface{}
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IgnoreNullValues interface{}
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior String
    The write behavior for the operation.
    alternateKeyName Object
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignoreNullValues Object
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior string
    The write behavior for the operation.
    alternateKeyName any
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignoreNullValues any
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_behavior str
    The write behavior for the operation.
    alternate_key_name Any
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignore_null_values Any
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior String
    The write behavior for the operation.
    alternateKeyName Any
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignoreNullValues Any
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    CommonDataServiceForAppsSource, CommonDataServiceForAppsSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    FetchXML is a proprietary query language that is used in Microsoft Common Data Service for Apps (online & on-premises). Type: string (or Expression with resultType string).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    FetchXML is a proprietary query language that is used in Microsoft Common Data Service for Apps (online & on-premises). Type: string (or Expression with resultType string).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    FetchXML is a proprietary query language that is used in Microsoft Common Data Service for Apps (online & on-premises). Type: string (or Expression with resultType string).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    FetchXML is a proprietary query language that is used in Microsoft Common Data Service for Apps (online & on-premises). Type: string (or Expression with resultType string).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    FetchXML is a proprietary query language that is used in Microsoft Common Data Service for Apps (online & on-premises). Type: string (or Expression with resultType string).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    FetchXML is a proprietary query language that is used in Microsoft Common Data Service for Apps (online & on-premises). Type: string (or Expression with resultType string).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    CommonDataServiceForAppsSourceResponse, CommonDataServiceForAppsSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    FetchXML is a proprietary query language that is used in Microsoft Common Data Service for Apps (online & on-premises). Type: string (or Expression with resultType string).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    FetchXML is a proprietary query language that is used in Microsoft Common Data Service for Apps (online & on-premises). Type: string (or Expression with resultType string).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    FetchXML is a proprietary query language that is used in Microsoft Common Data Service for Apps (online & on-premises). Type: string (or Expression with resultType string).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    FetchXML is a proprietary query language that is used in Microsoft Common Data Service for Apps (online & on-premises). Type: string (or Expression with resultType string).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    FetchXML is a proprietary query language that is used in Microsoft Common Data Service for Apps (online & on-premises). Type: string (or Expression with resultType string).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    FetchXML is a proprietary query language that is used in Microsoft Common Data Service for Apps (online & on-premises). Type: string (or Expression with resultType string).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    ConcurSource, ConcurSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    ConcurSourceResponse, ConcurSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    ConfigurationType, ConfigurationTypeArgs

    Default
    Default
    Customized
    Customized
    Artifact
    Artifact
    ConfigurationTypeDefault
    Default
    ConfigurationTypeCustomized
    Customized
    ConfigurationTypeArtifact
    Artifact
    Default
    Default
    Customized
    Customized
    Artifact
    Artifact
    Default
    Default
    Customized
    Customized
    Artifact
    Artifact
    DEFAULT
    Default
    CUSTOMIZED
    Customized
    ARTIFACT
    Artifact
    "Default"
    Default
    "Customized"
    Customized
    "Artifact"
    Artifact

    ControlActivity, ControlActivityArgs

    Name string
    Activity name.
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependency>
    Activity depends on condition.
    Description string
    Activity description.
    OnInactiveMarkAs string | Pulumi.AzureNative.DataFactory.ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    State string | Pulumi.AzureNative.DataFactory.ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserProperty>
    Activity user properties.
    Name string
    Activity name.
    DependsOn []ActivityDependency
    Activity depends on condition.
    Description string
    Activity description.
    OnInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    State string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserProperty
    Activity user properties.
    name String
    Activity name.
    dependsOn List<ActivityDependency>
    Activity depends on condition.
    description String
    Activity description.
    onInactiveMarkAs String | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    state String | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserProperty>
    Activity user properties.
    name string
    Activity name.
    dependsOn ActivityDependency[]
    Activity depends on condition.
    description string
    Activity description.
    onInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    state string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserProperty[]
    Activity user properties.
    name str
    Activity name.
    depends_on Sequence[ActivityDependency]
    Activity depends on condition.
    description str
    Activity description.
    on_inactive_mark_as str | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    state str | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserProperty]
    Activity user properties.
    name String
    Activity name.
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    onInactiveMarkAs String | "Succeeded" | "Failed" | "Skipped"
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    state String | "Active" | "Inactive"
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.

    ControlActivityResponse, ControlActivityResponseArgs

    Name string
    Activity name.
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependencyResponse>
    Activity depends on condition.
    Description string
    Activity description.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserPropertyResponse>
    Activity user properties.
    Name string
    Activity name.
    DependsOn []ActivityDependencyResponse
    Activity depends on condition.
    Description string
    Activity description.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserPropertyResponse
    Activity user properties.
    name String
    Activity name.
    dependsOn List<ActivityDependencyResponse>
    Activity depends on condition.
    description String
    Activity description.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserPropertyResponse>
    Activity user properties.
    name string
    Activity name.
    dependsOn ActivityDependencyResponse[]
    Activity depends on condition.
    description string
    Activity description.
    onInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    state string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserPropertyResponse[]
    Activity user properties.
    name str
    Activity name.
    depends_on Sequence[ActivityDependencyResponse]
    Activity depends on condition.
    description str
    Activity description.
    on_inactive_mark_as str
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    state str
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserPropertyResponse]
    Activity user properties.
    name String
    Activity name.
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.

    CopyActivity, CopyActivityArgs

    Name string
    Activity name.
    Sink Pulumi.AzureNative.DataFactory.Inputs.AvroSink | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSSink | Pulumi.AzureNative.DataFactory.Inputs.AzureDataExplorerSink | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreSink | Pulumi.AzureNative.DataFactory.Inputs.AzureDatabricksDeltaLakeSink | Pulumi.AzureNative.DataFactory.Inputs.AzureMySqlSink | Pulumi.AzureNative.DataFactory.Inputs.AzurePostgreSqlSink | Pulumi.AzureNative.DataFactory.Inputs.AzureQueueSink | Pulumi.AzureNative.DataFactory.Inputs.AzureSearchIndexSink | Pulumi.AzureNative.DataFactory.Inputs.AzureSqlSink | Pulumi.AzureNative.DataFactory.Inputs.AzureTableSink | Pulumi.AzureNative.DataFactory.Inputs.BinarySink | Pulumi.AzureNative.DataFactory.Inputs.BlobSink | Pulumi.AzureNative.DataFactory.Inputs.CommonDataServiceForAppsSink | Pulumi.AzureNative.DataFactory.Inputs.CosmosDbMongoDbApiSink | Pulumi.AzureNative.DataFactory.Inputs.CosmosDbSqlApiSink | Pulumi.AzureNative.DataFactory.Inputs.DelimitedTextSink | Pulumi.AzureNative.DataFactory.Inputs.DocumentDbCollectionSink | Pulumi.AzureNative.DataFactory.Inputs.DynamicsCrmSink | Pulumi.AzureNative.DataFactory.Inputs.DynamicsSink | Pulumi.AzureNative.DataFactory.Inputs.FileSystemSink | Pulumi.AzureNative.DataFactory.Inputs.InformixSink | Pulumi.AzureNative.DataFactory.Inputs.JsonSink | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseTableSink | Pulumi.AzureNative.DataFactory.Inputs.MicrosoftAccessSink | Pulumi.AzureNative.DataFactory.Inputs.MongoDbAtlasSink | Pulumi.AzureNative.DataFactory.Inputs.MongoDbV2Sink | Pulumi.AzureNative.DataFactory.Inputs.OdbcSink | Pulumi.AzureNative.DataFactory.Inputs.OracleSink | Pulumi.AzureNative.DataFactory.Inputs.OrcSink | Pulumi.AzureNative.DataFactory.Inputs.ParquetSink | Pulumi.AzureNative.DataFactory.Inputs.RestSink | Pulumi.AzureNative.DataFactory.Inputs.SalesforceServiceCloudSink | Pulumi.AzureNative.DataFactory.Inputs.SalesforceServiceCloudV2Sink | Pulumi.AzureNative.DataFactory.Inputs.SalesforceSink | Pulumi.AzureNative.DataFactory.Inputs.SalesforceV2Sink | Pulumi.AzureNative.DataFactory.Inputs.SapCloudForCustomerSink | Pulumi.AzureNative.DataFactory.Inputs.SnowflakeSink | Pulumi.AzureNative.DataFactory.Inputs.SnowflakeV2Sink | Pulumi.AzureNative.DataFactory.Inputs.SqlDWSink | Pulumi.AzureNative.DataFactory.Inputs.SqlMISink | Pulumi.AzureNative.DataFactory.Inputs.SqlServerSink | Pulumi.AzureNative.DataFactory.Inputs.SqlSink | Pulumi.AzureNative.DataFactory.Inputs.WarehouseSink
    Copy activity sink.
    Source Pulumi.AzureNative.DataFactory.Inputs.AmazonMWSSource | Pulumi.AzureNative.DataFactory.Inputs.AmazonRdsForOracleSource | Pulumi.AzureNative.DataFactory.Inputs.AmazonRdsForSqlServerSource | Pulumi.AzureNative.DataFactory.Inputs.AmazonRedshiftSource | Pulumi.AzureNative.DataFactory.Inputs.AvroSource | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSSource | Pulumi.AzureNative.DataFactory.Inputs.AzureDataExplorerSource | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreSource | Pulumi.AzureNative.DataFactory.Inputs.AzureDatabricksDeltaLakeSource | Pulumi.AzureNative.DataFactory.Inputs.AzureMariaDBSource | Pulumi.AzureNative.DataFactory.Inputs.AzureMySqlSource | Pulumi.AzureNative.DataFactory.Inputs.AzurePostgreSqlSource | Pulumi.AzureNative.DataFactory.Inputs.AzureSqlSource | Pulumi.AzureNative.DataFactory.Inputs.AzureTableSource | Pulumi.AzureNative.DataFactory.Inputs.BinarySource | Pulumi.AzureNative.DataFactory.Inputs.BlobSource | Pulumi.AzureNative.DataFactory.Inputs.CassandraSource | Pulumi.AzureNative.DataFactory.Inputs.CommonDataServiceForAppsSource | Pulumi.AzureNative.DataFactory.Inputs.ConcurSource | Pulumi.AzureNative.DataFactory.Inputs.CosmosDbMongoDbApiSource | Pulumi.AzureNative.DataFactory.Inputs.CosmosDbSqlApiSource | Pulumi.AzureNative.DataFactory.Inputs.CouchbaseSource | Pulumi.AzureNative.DataFactory.Inputs.Db2Source | Pulumi.AzureNative.DataFactory.Inputs.DelimitedTextSource | Pulumi.AzureNative.DataFactory.Inputs.DocumentDbCollectionSource | Pulumi.AzureNative.DataFactory.Inputs.DrillSource | Pulumi.AzureNative.DataFactory.Inputs.DynamicsAXSource | Pulumi.AzureNative.DataFactory.Inputs.DynamicsCrmSource | Pulumi.AzureNative.DataFactory.Inputs.DynamicsSource | Pulumi.AzureNative.DataFactory.Inputs.EloquaSource | Pulumi.AzureNative.DataFactory.Inputs.ExcelSource | Pulumi.AzureNative.DataFactory.Inputs.FileSystemSource | Pulumi.AzureNative.DataFactory.Inputs.GoogleAdWordsSource | Pulumi.AzureNative.DataFactory.Inputs.GoogleBigQuerySource | Pulumi.AzureNative.DataFactory.Inputs.GoogleBigQueryV2Source | Pulumi.AzureNative.DataFactory.Inputs.GreenplumSource | Pulumi.AzureNative.DataFactory.Inputs.HBaseSource | Pulumi.AzureNative.DataFactory.Inputs.HdfsSource | Pulumi.AzureNative.DataFactory.Inputs.HiveSource | Pulumi.AzureNative.DataFactory.Inputs.HttpSource | Pulumi.AzureNative.DataFactory.Inputs.HubspotSource | Pulumi.AzureNative.DataFactory.Inputs.ImpalaSource | Pulumi.AzureNative.DataFactory.Inputs.InformixSource | Pulumi.AzureNative.DataFactory.Inputs.JiraSource | Pulumi.AzureNative.DataFactory.Inputs.JsonSource | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseTableSource | Pulumi.AzureNative.DataFactory.Inputs.MagentoSource | Pulumi.AzureNative.DataFactory.Inputs.MariaDBSource | Pulumi.AzureNative.DataFactory.Inputs.MarketoSource | Pulumi.AzureNative.DataFactory.Inputs.MicrosoftAccessSource | Pulumi.AzureNative.DataFactory.Inputs.MongoDbAtlasSource | Pulumi.AzureNative.DataFactory.Inputs.MongoDbSource | Pulumi.AzureNative.DataFactory.Inputs.MongoDbV2Source | Pulumi.AzureNative.DataFactory.Inputs.MySqlSource | Pulumi.AzureNative.DataFactory.Inputs.NetezzaSource | Pulumi.AzureNative.DataFactory.Inputs.ODataSource | Pulumi.AzureNative.DataFactory.Inputs.OdbcSource | Pulumi.AzureNative.DataFactory.Inputs.Office365Source | Pulumi.AzureNative.DataFactory.Inputs.OracleServiceCloudSource | Pulumi.AzureNative.DataFactory.Inputs.OracleSource | Pulumi.AzureNative.DataFactory.Inputs.OrcSource | Pulumi.AzureNative.DataFactory.Inputs.ParquetSource | Pulumi.AzureNative.DataFactory.Inputs.PaypalSource | Pulumi.AzureNative.DataFactory.Inputs.PhoenixSource | Pulumi.AzureNative.DataFactory.Inputs.PostgreSqlSource | Pulumi.AzureNative.DataFactory.Inputs.PostgreSqlV2Source | Pulumi.AzureNative.DataFactory.Inputs.PrestoSource | Pulumi.AzureNative.DataFactory.Inputs.QuickBooksSource | Pulumi.AzureNative.DataFactory.Inputs.RelationalSource | Pulumi.AzureNative.DataFactory.Inputs.ResponsysSource | Pulumi.AzureNative.DataFactory.Inputs.RestSource | Pulumi.AzureNative.DataFactory.Inputs.SalesforceMarketingCloudSource | Pulumi.AzureNative.DataFactory.Inputs.SalesforceServiceCloudSource | Pulumi.AzureNative.DataFactory.Inputs.SalesforceServiceCloudV2Source | Pulumi.AzureNative.DataFactory.Inputs.SalesforceSource | Pulumi.AzureNative.DataFactory.Inputs.SalesforceV2Source | Pulumi.AzureNative.DataFactory.Inputs.SapBwSource | Pulumi.AzureNative.DataFactory.Inputs.SapCloudForCustomerSource | Pulumi.AzureNative.DataFactory.Inputs.SapEccSource | Pulumi.AzureNative.DataFactory.Inputs.SapHanaSource | Pulumi.AzureNative.DataFactory.Inputs.SapOdpSource | Pulumi.AzureNative.DataFactory.Inputs.SapOpenHubSource | Pulumi.AzureNative.DataFactory.Inputs.SapTableSource | Pulumi.AzureNative.DataFactory.Inputs.ServiceNowSource | Pulumi.AzureNative.DataFactory.Inputs.ServiceNowV2Source | Pulumi.AzureNative.DataFactory.Inputs.SharePointOnlineListSource | Pulumi.AzureNative.DataFactory.Inputs.ShopifySource | Pulumi.AzureNative.DataFactory.Inputs.SnowflakeSource | Pulumi.AzureNative.DataFactory.Inputs.SnowflakeV2Source | Pulumi.AzureNative.DataFactory.Inputs.SparkSource | Pulumi.AzureNative.DataFactory.Inputs.SqlDWSource | Pulumi.AzureNative.DataFactory.Inputs.SqlMISource | Pulumi.AzureNative.DataFactory.Inputs.SqlServerSource | Pulumi.AzureNative.DataFactory.Inputs.SqlSource | Pulumi.AzureNative.DataFactory.Inputs.SquareSource | Pulumi.AzureNative.DataFactory.Inputs.SybaseSource | Pulumi.AzureNative.DataFactory.Inputs.TabularSource | Pulumi.AzureNative.DataFactory.Inputs.TeradataSource | Pulumi.AzureNative.DataFactory.Inputs.VerticaSource | Pulumi.AzureNative.DataFactory.Inputs.WarehouseSource | Pulumi.AzureNative.DataFactory.Inputs.WebSource | Pulumi.AzureNative.DataFactory.Inputs.XeroSource | Pulumi.AzureNative.DataFactory.Inputs.XmlSource | Pulumi.AzureNative.DataFactory.Inputs.ZohoSource
    Copy activity source.
    DataIntegrationUnits object
    Maximum number of data integration units that can be used to perform this data movement. Type: integer (or Expression with resultType integer), minimum: 0.
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependency>
    Activity depends on condition.
    Description string
    Activity description.
    EnableSkipIncompatibleRow object
    Whether to skip incompatible row. Default value is false. Type: boolean (or Expression with resultType boolean).
    EnableStaging object
    Specifies whether to copy data via an interim staging. Default value is false. Type: boolean (or Expression with resultType boolean).
    Inputs List<Pulumi.AzureNative.DataFactory.Inputs.DatasetReference>
    List of inputs for the activity.
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    Linked service reference.
    LogSettings Pulumi.AzureNative.DataFactory.Inputs.LogSettings
    Log settings customer needs provide when enabling log.
    LogStorageSettings Pulumi.AzureNative.DataFactory.Inputs.LogStorageSettings
    (Deprecated. Please use LogSettings) Log storage settings customer need to provide when enabling session log.
    OnInactiveMarkAs string | Pulumi.AzureNative.DataFactory.ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Outputs List<Pulumi.AzureNative.DataFactory.Inputs.DatasetReference>
    List of outputs for the activity.
    ParallelCopies object
    Maximum number of concurrent sessions opened on the source or sink to avoid overloading the data store. Type: integer (or Expression with resultType integer), minimum: 0.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicy
    Activity policy.
    Preserve List<object>
    Preserve rules.
    PreserveRules List<object>
    Preserve Rules.
    RedirectIncompatibleRowSettings Pulumi.AzureNative.DataFactory.Inputs.RedirectIncompatibleRowSettings
    Redirect incompatible row settings when EnableSkipIncompatibleRow is true.
    SkipErrorFile Pulumi.AzureNative.DataFactory.Inputs.SkipErrorFile
    Specify the fault tolerance for data consistency.
    StagingSettings Pulumi.AzureNative.DataFactory.Inputs.StagingSettings
    Specifies interim staging settings when EnableStaging is true.
    State string | Pulumi.AzureNative.DataFactory.ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    Translator object
    Copy activity translator. If not specified, tabular translator is used.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserProperty>
    Activity user properties.
    ValidateDataConsistency object
    Whether to enable Data Consistency validation. Type: boolean (or Expression with resultType boolean).
    Name string
    Activity name.
    Sink AvroSink | AzureBlobFSSink | AzureDataExplorerSink | AzureDataLakeStoreSink | AzureDatabricksDeltaLakeSink | AzureMySqlSink | AzurePostgreSqlSink | AzureQueueSink | AzureSearchIndexSink | AzureSqlSink | AzureTableSink | BinarySink | BlobSink | CommonDataServiceForAppsSink | CosmosDbMongoDbApiSink | CosmosDbSqlApiSink | DelimitedTextSink | DocumentDbCollectionSink | DynamicsCrmSink | DynamicsSink | FileSystemSink | InformixSink | JsonSink | LakeHouseTableSink | MicrosoftAccessSink | MongoDbAtlasSink | MongoDbV2Sink | OdbcSink | OracleSink | OrcSink | ParquetSink | RestSink | SalesforceServiceCloudSink | SalesforceServiceCloudV2Sink | SalesforceSink | SalesforceV2Sink | SapCloudForCustomerSink | SnowflakeSink | SnowflakeV2Sink | SqlDWSink | SqlMISink | SqlServerSink | SqlSink | WarehouseSink
    Copy activity sink.
    Source AmazonMWSSource | AmazonRdsForOracleSource | AmazonRdsForSqlServerSource | AmazonRedshiftSource | AvroSource | AzureBlobFSSource | AzureDataExplorerSource | AzureDataLakeStoreSource | AzureDatabricksDeltaLakeSource | AzureMariaDBSource | AzureMySqlSource | AzurePostgreSqlSource | AzureSqlSource | AzureTableSource | BinarySource | BlobSource | CassandraSource | CommonDataServiceForAppsSource | ConcurSource | CosmosDbMongoDbApiSource | CosmosDbSqlApiSource | CouchbaseSource | Db2Source | DelimitedTextSource | DocumentDbCollectionSource | DrillSource | DynamicsAXSource | DynamicsCrmSource | DynamicsSource | EloquaSource | ExcelSource | FileSystemSource | GoogleAdWordsSource | GoogleBigQuerySource | GoogleBigQueryV2Source | GreenplumSource | HBaseSource | HdfsSource | HiveSource | HttpSource | HubspotSource | ImpalaSource | InformixSource | JiraSource | JsonSource | LakeHouseTableSource | MagentoSource | MariaDBSource | MarketoSource | MicrosoftAccessSource | MongoDbAtlasSource | MongoDbSource | MongoDbV2Source | MySqlSource | NetezzaSource | ODataSource | OdbcSource | Office365Source | OracleServiceCloudSource | OracleSource | OrcSource | ParquetSource | PaypalSource | PhoenixSource | PostgreSqlSource | PostgreSqlV2Source | PrestoSource | QuickBooksSource | RelationalSource | ResponsysSource | RestSource | SalesforceMarketingCloudSource | SalesforceServiceCloudSource | SalesforceServiceCloudV2Source | SalesforceSource | SalesforceV2Source | SapBwSource | SapCloudForCustomerSource | SapEccSource | SapHanaSource | SapOdpSource | SapOpenHubSource | SapTableSource | ServiceNowSource | ServiceNowV2Source | SharePointOnlineListSource | ShopifySource | SnowflakeSource | SnowflakeV2Source | SparkSource | SqlDWSource | SqlMISource | SqlServerSource | SqlSource | SquareSource | SybaseSource | TabularSource | TeradataSource | VerticaSource | WarehouseSource | WebSource | XeroSource | XmlSource | ZohoSource
    Copy activity source.
    DataIntegrationUnits interface{}
    Maximum number of data integration units that can be used to perform this data movement. Type: integer (or Expression with resultType integer), minimum: 0.
    DependsOn []ActivityDependency
    Activity depends on condition.
    Description string
    Activity description.
    EnableSkipIncompatibleRow interface{}
    Whether to skip incompatible row. Default value is false. Type: boolean (or Expression with resultType boolean).
    EnableStaging interface{}
    Specifies whether to copy data via an interim staging. Default value is false. Type: boolean (or Expression with resultType boolean).
    Inputs []DatasetReference
    List of inputs for the activity.
    LinkedServiceName LinkedServiceReference
    Linked service reference.
    LogSettings LogSettings
    Log settings customer needs provide when enabling log.
    LogStorageSettings LogStorageSettings
    (Deprecated. Please use LogSettings) Log storage settings customer need to provide when enabling session log.
    OnInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Outputs []DatasetReference
    List of outputs for the activity.
    ParallelCopies interface{}
    Maximum number of concurrent sessions opened on the source or sink to avoid overloading the data store. Type: integer (or Expression with resultType integer), minimum: 0.
    Policy ActivityPolicy
    Activity policy.
    Preserve []interface{}
    Preserve rules.
    PreserveRules []interface{}
    Preserve Rules.
    RedirectIncompatibleRowSettings RedirectIncompatibleRowSettings
    Redirect incompatible row settings when EnableSkipIncompatibleRow is true.
    SkipErrorFile SkipErrorFile
    Specify the fault tolerance for data consistency.
    StagingSettings StagingSettings
    Specifies interim staging settings when EnableStaging is true.
    State string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    Translator interface{}
    Copy activity translator. If not specified, tabular translator is used.
    UserProperties []UserProperty
    Activity user properties.
    ValidateDataConsistency interface{}
    Whether to enable Data Consistency validation. Type: boolean (or Expression with resultType boolean).
    name String
    Activity name.
    sink AvroSink | AzureBlobFSSink | AzureDataExplorerSink | AzureDataLakeStoreSink | AzureDatabricksDeltaLakeSink | AzureMySqlSink | AzurePostgreSqlSink | AzureQueueSink | AzureSearchIndexSink | AzureSqlSink | AzureTableSink | BinarySink | BlobSink | CommonDataServiceForAppsSink | CosmosDbMongoDbApiSink | CosmosDbSqlApiSink | DelimitedTextSink | DocumentDbCollectionSink | DynamicsCrmSink | DynamicsSink | FileSystemSink | InformixSink | JsonSink | LakeHouseTableSink | MicrosoftAccessSink | MongoDbAtlasSink | MongoDbV2Sink | OdbcSink | OracleSink | OrcSink | ParquetSink | RestSink | SalesforceServiceCloudSink | SalesforceServiceCloudV2Sink | SalesforceSink | SalesforceV2Sink | SapCloudForCustomerSink | SnowflakeSink | SnowflakeV2Sink | SqlDWSink | SqlMISink | SqlServerSink | SqlSink | WarehouseSink
    Copy activity sink.
    source AmazonMWSSource | AmazonRdsForOracleSource | AmazonRdsForSqlServerSource | AmazonRedshiftSource | AvroSource | AzureBlobFSSource | AzureDataExplorerSource | AzureDataLakeStoreSource | AzureDatabricksDeltaLakeSource | AzureMariaDBSource | AzureMySqlSource | AzurePostgreSqlSource | AzureSqlSource | AzureTableSource | BinarySource | BlobSource | CassandraSource | CommonDataServiceForAppsSource | ConcurSource | CosmosDbMongoDbApiSource | CosmosDbSqlApiSource | CouchbaseSource | Db2Source | DelimitedTextSource | DocumentDbCollectionSource | DrillSource | DynamicsAXSource | DynamicsCrmSource | DynamicsSource | EloquaSource | ExcelSource | FileSystemSource | GoogleAdWordsSource | GoogleBigQuerySource | GoogleBigQueryV2Source | GreenplumSource | HBaseSource | HdfsSource | HiveSource | HttpSource | HubspotSource | ImpalaSource | InformixSource | JiraSource | JsonSource | LakeHouseTableSource | MagentoSource | MariaDBSource | MarketoSource | MicrosoftAccessSource | MongoDbAtlasSource | MongoDbSource | MongoDbV2Source | MySqlSource | NetezzaSource | ODataSource | OdbcSource | Office365Source | OracleServiceCloudSource | OracleSource | OrcSource | ParquetSource | PaypalSource | PhoenixSource | PostgreSqlSource | PostgreSqlV2Source | PrestoSource | QuickBooksSource | RelationalSource | ResponsysSource | RestSource | SalesforceMarketingCloudSource | SalesforceServiceCloudSource | SalesforceServiceCloudV2Source | SalesforceSource | SalesforceV2Source | SapBwSource | SapCloudForCustomerSource | SapEccSource | SapHanaSource | SapOdpSource | SapOpenHubSource | SapTableSource | ServiceNowSource | ServiceNowV2Source | SharePointOnlineListSource | ShopifySource | SnowflakeSource | SnowflakeV2Source | SparkSource | SqlDWSource | SqlMISource | SqlServerSource | SqlSource | SquareSource | SybaseSource | TabularSource | TeradataSource | VerticaSource | WarehouseSource | WebSource | XeroSource | XmlSource | ZohoSource
    Copy activity source.
    dataIntegrationUnits Object
    Maximum number of data integration units that can be used to perform this data movement. Type: integer (or Expression with resultType integer), minimum: 0.
    dependsOn List<ActivityDependency>
    Activity depends on condition.
    description String
    Activity description.
    enableSkipIncompatibleRow Object
    Whether to skip incompatible row. Default value is false. Type: boolean (or Expression with resultType boolean).
    enableStaging Object
    Specifies whether to copy data via an interim staging. Default value is false. Type: boolean (or Expression with resultType boolean).
    inputs List<DatasetReference>
    List of inputs for the activity.
    linkedServiceName LinkedServiceReference
    Linked service reference.
    logSettings LogSettings
    Log settings customer needs provide when enabling log.
    logStorageSettings LogStorageSettings
    (Deprecated. Please use LogSettings) Log storage settings customer need to provide when enabling session log.
    onInactiveMarkAs String | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    outputs List<DatasetReference>
    List of outputs for the activity.
    parallelCopies Object
    Maximum number of concurrent sessions opened on the source or sink to avoid overloading the data store. Type: integer (or Expression with resultType integer), minimum: 0.
    policy ActivityPolicy
    Activity policy.
    preserve List<Object>
    Preserve rules.
    preserveRules List<Object>
    Preserve Rules.
    redirectIncompatibleRowSettings RedirectIncompatibleRowSettings
    Redirect incompatible row settings when EnableSkipIncompatibleRow is true.
    skipErrorFile SkipErrorFile
    Specify the fault tolerance for data consistency.
    stagingSettings StagingSettings
    Specifies interim staging settings when EnableStaging is true.
    state String | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    translator Object
    Copy activity translator. If not specified, tabular translator is used.
    userProperties List<UserProperty>
    Activity user properties.
    validateDataConsistency Object
    Whether to enable Data Consistency validation. Type: boolean (or Expression with resultType boolean).
    name string
    Activity name.
    sink AvroSink | AzureBlobFSSink | AzureDataExplorerSink | AzureDataLakeStoreSink | AzureDatabricksDeltaLakeSink | AzureMySqlSink | AzurePostgreSqlSink | AzureQueueSink | AzureSearchIndexSink | AzureSqlSink | AzureTableSink | BinarySink | BlobSink | CommonDataServiceForAppsSink | CosmosDbMongoDbApiSink | CosmosDbSqlApiSink | DelimitedTextSink | DocumentDbCollectionSink | DynamicsCrmSink | DynamicsSink | FileSystemSink | InformixSink | JsonSink | LakeHouseTableSink | MicrosoftAccessSink | MongoDbAtlasSink | MongoDbV2Sink | OdbcSink | OracleSink | OrcSink | ParquetSink | RestSink | SalesforceServiceCloudSink | SalesforceServiceCloudV2Sink | SalesforceSink | SalesforceV2Sink | SapCloudForCustomerSink | SnowflakeSink | SnowflakeV2Sink | SqlDWSink | SqlMISink | SqlServerSink | SqlSink | WarehouseSink
    Copy activity sink.
    source AmazonMWSSource | AmazonRdsForOracleSource | AmazonRdsForSqlServerSource | AmazonRedshiftSource | AvroSource | AzureBlobFSSource | AzureDataExplorerSource | AzureDataLakeStoreSource | AzureDatabricksDeltaLakeSource | AzureMariaDBSource | AzureMySqlSource | AzurePostgreSqlSource | AzureSqlSource | AzureTableSource | BinarySource | BlobSource | CassandraSource | CommonDataServiceForAppsSource | ConcurSource | CosmosDbMongoDbApiSource | CosmosDbSqlApiSource | CouchbaseSource | Db2Source | DelimitedTextSource | DocumentDbCollectionSource | DrillSource | DynamicsAXSource | DynamicsCrmSource | DynamicsSource | EloquaSource | ExcelSource | FileSystemSource | GoogleAdWordsSource | GoogleBigQuerySource | GoogleBigQueryV2Source | GreenplumSource | HBaseSource | HdfsSource | HiveSource | HttpSource | HubspotSource | ImpalaSource | InformixSource | JiraSource | JsonSource | LakeHouseTableSource | MagentoSource | MariaDBSource | MarketoSource | MicrosoftAccessSource | MongoDbAtlasSource | MongoDbSource | MongoDbV2Source | MySqlSource | NetezzaSource | ODataSource | OdbcSource | Office365Source | OracleServiceCloudSource | OracleSource | OrcSource | ParquetSource | PaypalSource | PhoenixSource | PostgreSqlSource | PostgreSqlV2Source | PrestoSource | QuickBooksSource | RelationalSource | ResponsysSource | RestSource | SalesforceMarketingCloudSource | SalesforceServiceCloudSource | SalesforceServiceCloudV2Source | SalesforceSource | SalesforceV2Source | SapBwSource | SapCloudForCustomerSource | SapEccSource | SapHanaSource | SapOdpSource | SapOpenHubSource | SapTableSource | ServiceNowSource | ServiceNowV2Source | SharePointOnlineListSource | ShopifySource | SnowflakeSource | SnowflakeV2Source | SparkSource | SqlDWSource | SqlMISource | SqlServerSource | SqlSource | SquareSource | SybaseSource | TabularSource | TeradataSource | VerticaSource | WarehouseSource | WebSource | XeroSource | XmlSource | ZohoSource
    Copy activity source.
    dataIntegrationUnits any
    Maximum number of data integration units that can be used to perform this data movement. Type: integer (or Expression with resultType integer), minimum: 0.
    dependsOn ActivityDependency[]
    Activity depends on condition.
    description string
    Activity description.
    enableSkipIncompatibleRow any
    Whether to skip incompatible row. Default value is false. Type: boolean (or Expression with resultType boolean).
    enableStaging any
    Specifies whether to copy data via an interim staging. Default value is false. Type: boolean (or Expression with resultType boolean).
    inputs DatasetReference[]
    List of inputs for the activity.
    linkedServiceName LinkedServiceReference
    Linked service reference.
    logSettings LogSettings
    Log settings customer needs provide when enabling log.
    logStorageSettings LogStorageSettings
    (Deprecated. Please use LogSettings) Log storage settings customer need to provide when enabling session log.
    onInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    outputs DatasetReference[]
    List of outputs for the activity.
    parallelCopies any
    Maximum number of concurrent sessions opened on the source or sink to avoid overloading the data store. Type: integer (or Expression with resultType integer), minimum: 0.
    policy ActivityPolicy
    Activity policy.
    preserve any[]
    Preserve rules.
    preserveRules any[]
    Preserve Rules.
    redirectIncompatibleRowSettings RedirectIncompatibleRowSettings
    Redirect incompatible row settings when EnableSkipIncompatibleRow is true.
    skipErrorFile SkipErrorFile
    Specify the fault tolerance for data consistency.
    stagingSettings StagingSettings
    Specifies interim staging settings when EnableStaging is true.
    state string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    translator any
    Copy activity translator. If not specified, tabular translator is used.
    userProperties UserProperty[]
    Activity user properties.
    validateDataConsistency any
    Whether to enable Data Consistency validation. Type: boolean (or Expression with resultType boolean).
    name str
    Activity name.
    sink AvroSink | AzureBlobFSSink | AzureDataExplorerSink | AzureDataLakeStoreSink | AzureDatabricksDeltaLakeSink | AzureMySqlSink | AzurePostgreSqlSink | AzureQueueSink | AzureSearchIndexSink | AzureSqlSink | AzureTableSink | BinarySink | BlobSink | CommonDataServiceForAppsSink | CosmosDbMongoDbApiSink | CosmosDbSqlApiSink | DelimitedTextSink | DocumentDbCollectionSink | DynamicsCrmSink | DynamicsSink | FileSystemSink | InformixSink | JsonSink | LakeHouseTableSink | MicrosoftAccessSink | MongoDbAtlasSink | MongoDbV2Sink | OdbcSink | OracleSink | OrcSink | ParquetSink | RestSink | SalesforceServiceCloudSink | SalesforceServiceCloudV2Sink | SalesforceSink | SalesforceV2Sink | SapCloudForCustomerSink | SnowflakeSink | SnowflakeV2Sink | SqlDWSink | SqlMISink | SqlServerSink | SqlSink | WarehouseSink
    Copy activity sink.
    source AmazonMWSSource | AmazonRdsForOracleSource | AmazonRdsForSqlServerSource | AmazonRedshiftSource | AvroSource | AzureBlobFSSource | AzureDataExplorerSource | AzureDataLakeStoreSource | AzureDatabricksDeltaLakeSource | AzureMariaDBSource | AzureMySqlSource | AzurePostgreSqlSource | AzureSqlSource | AzureTableSource | BinarySource | BlobSource | CassandraSource | CommonDataServiceForAppsSource | ConcurSource | CosmosDbMongoDbApiSource | CosmosDbSqlApiSource | CouchbaseSource | Db2Source | DelimitedTextSource | DocumentDbCollectionSource | DrillSource | DynamicsAXSource | DynamicsCrmSource | DynamicsSource | EloquaSource | ExcelSource | FileSystemSource | GoogleAdWordsSource | GoogleBigQuerySource | GoogleBigQueryV2Source | GreenplumSource | HBaseSource | HdfsSource | HiveSource | HttpSource | HubspotSource | ImpalaSource | InformixSource | JiraSource | JsonSource | LakeHouseTableSource | MagentoSource | MariaDBSource | MarketoSource | MicrosoftAccessSource | MongoDbAtlasSource | MongoDbSource | MongoDbV2Source | MySqlSource | NetezzaSource | ODataSource | OdbcSource | Office365Source | OracleServiceCloudSource | OracleSource | OrcSource | ParquetSource | PaypalSource | PhoenixSource | PostgreSqlSource | PostgreSqlV2Source | PrestoSource | QuickBooksSource | RelationalSource | ResponsysSource | RestSource | SalesforceMarketingCloudSource | SalesforceServiceCloudSource | SalesforceServiceCloudV2Source | SalesforceSource | SalesforceV2Source | SapBwSource | SapCloudForCustomerSource | SapEccSource | SapHanaSource | SapOdpSource | SapOpenHubSource | SapTableSource | ServiceNowSource | ServiceNowV2Source | SharePointOnlineListSource | ShopifySource | SnowflakeSource | SnowflakeV2Source | SparkSource | SqlDWSource | SqlMISource | SqlServerSource | SqlSource | SquareSource | SybaseSource | TabularSource | TeradataSource | VerticaSource | WarehouseSource | WebSource | XeroSource | XmlSource | ZohoSource
    Copy activity source.
    data_integration_units Any
    Maximum number of data integration units that can be used to perform this data movement. Type: integer (or Expression with resultType integer), minimum: 0.
    depends_on Sequence[ActivityDependency]
    Activity depends on condition.
    description str
    Activity description.
    enable_skip_incompatible_row Any
    Whether to skip incompatible row. Default value is false. Type: boolean (or Expression with resultType boolean).
    enable_staging Any
    Specifies whether to copy data via an interim staging. Default value is false. Type: boolean (or Expression with resultType boolean).
    inputs Sequence[DatasetReference]
    List of inputs for the activity.
    linked_service_name LinkedServiceReference
    Linked service reference.
    log_settings LogSettings
    Log settings customer needs provide when enabling log.
    log_storage_settings LogStorageSettings
    (Deprecated. Please use LogSettings) Log storage settings customer need to provide when enabling session log.
    on_inactive_mark_as str | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    outputs Sequence[DatasetReference]
    List of outputs for the activity.
    parallel_copies Any
    Maximum number of concurrent sessions opened on the source or sink to avoid overloading the data store. Type: integer (or Expression with resultType integer), minimum: 0.
    policy ActivityPolicy
    Activity policy.
    preserve Sequence[Any]
    Preserve rules.
    preserve_rules Sequence[Any]
    Preserve Rules.
    redirect_incompatible_row_settings RedirectIncompatibleRowSettings
    Redirect incompatible row settings when EnableSkipIncompatibleRow is true.
    skip_error_file SkipErrorFile
    Specify the fault tolerance for data consistency.
    staging_settings StagingSettings
    Specifies interim staging settings when EnableStaging is true.
    state str | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    translator Any
    Copy activity translator. If not specified, tabular translator is used.
    user_properties Sequence[UserProperty]
    Activity user properties.
    validate_data_consistency Any
    Whether to enable Data Consistency validation. Type: boolean (or Expression with resultType boolean).
    name String
    Activity name.
    sink Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    Copy activity sink.
    source Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    Copy activity source.
    dataIntegrationUnits Any
    Maximum number of data integration units that can be used to perform this data movement. Type: integer (or Expression with resultType integer), minimum: 0.
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    enableSkipIncompatibleRow Any
    Whether to skip incompatible row. Default value is false. Type: boolean (or Expression with resultType boolean).
    enableStaging Any
    Specifies whether to copy data via an interim staging. Default value is false. Type: boolean (or Expression with resultType boolean).
    inputs List<Property Map>
    List of inputs for the activity.
    linkedServiceName Property Map
    Linked service reference.
    logSettings Property Map
    Log settings customer needs provide when enabling log.
    logStorageSettings Property Map
    (Deprecated. Please use LogSettings) Log storage settings customer need to provide when enabling session log.
    onInactiveMarkAs String | "Succeeded" | "Failed" | "Skipped"
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    outputs List<Property Map>
    List of outputs for the activity.
    parallelCopies Any
    Maximum number of concurrent sessions opened on the source or sink to avoid overloading the data store. Type: integer (or Expression with resultType integer), minimum: 0.
    policy Property Map
    Activity policy.
    preserve List<Any>
    Preserve rules.
    preserveRules List<Any>
    Preserve Rules.
    redirectIncompatibleRowSettings Property Map
    Redirect incompatible row settings when EnableSkipIncompatibleRow is true.
    skipErrorFile Property Map
    Specify the fault tolerance for data consistency.
    stagingSettings Property Map
    Specifies interim staging settings when EnableStaging is true.
    state String | "Active" | "Inactive"
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    translator Any
    Copy activity translator. If not specified, tabular translator is used.
    userProperties List<Property Map>
    Activity user properties.
    validateDataConsistency Any
    Whether to enable Data Consistency validation. Type: boolean (or Expression with resultType boolean).

    CopyActivityLogSettings, CopyActivityLogSettingsArgs

    EnableReliableLogging object
    Specifies whether to enable reliable logging. Type: boolean (or Expression with resultType boolean).
    LogLevel object
    Gets or sets the log level, support: Info, Warning. Type: string (or Expression with resultType string).
    EnableReliableLogging interface{}
    Specifies whether to enable reliable logging. Type: boolean (or Expression with resultType boolean).
    LogLevel interface{}
    Gets or sets the log level, support: Info, Warning. Type: string (or Expression with resultType string).
    enableReliableLogging Object
    Specifies whether to enable reliable logging. Type: boolean (or Expression with resultType boolean).
    logLevel Object
    Gets or sets the log level, support: Info, Warning. Type: string (or Expression with resultType string).
    enableReliableLogging any
    Specifies whether to enable reliable logging. Type: boolean (or Expression with resultType boolean).
    logLevel any
    Gets or sets the log level, support: Info, Warning. Type: string (or Expression with resultType string).
    enable_reliable_logging Any
    Specifies whether to enable reliable logging. Type: boolean (or Expression with resultType boolean).
    log_level Any
    Gets or sets the log level, support: Info, Warning. Type: string (or Expression with resultType string).
    enableReliableLogging Any
    Specifies whether to enable reliable logging. Type: boolean (or Expression with resultType boolean).
    logLevel Any
    Gets or sets the log level, support: Info, Warning. Type: string (or Expression with resultType string).

    CopyActivityLogSettingsResponse, CopyActivityLogSettingsResponseArgs

    EnableReliableLogging object
    Specifies whether to enable reliable logging. Type: boolean (or Expression with resultType boolean).
    LogLevel object
    Gets or sets the log level, support: Info, Warning. Type: string (or Expression with resultType string).
    EnableReliableLogging interface{}
    Specifies whether to enable reliable logging. Type: boolean (or Expression with resultType boolean).
    LogLevel interface{}
    Gets or sets the log level, support: Info, Warning. Type: string (or Expression with resultType string).
    enableReliableLogging Object
    Specifies whether to enable reliable logging. Type: boolean (or Expression with resultType boolean).
    logLevel Object
    Gets or sets the log level, support: Info, Warning. Type: string (or Expression with resultType string).
    enableReliableLogging any
    Specifies whether to enable reliable logging. Type: boolean (or Expression with resultType boolean).
    logLevel any
    Gets or sets the log level, support: Info, Warning. Type: string (or Expression with resultType string).
    enable_reliable_logging Any
    Specifies whether to enable reliable logging. Type: boolean (or Expression with resultType boolean).
    log_level Any
    Gets or sets the log level, support: Info, Warning. Type: string (or Expression with resultType string).
    enableReliableLogging Any
    Specifies whether to enable reliable logging. Type: boolean (or Expression with resultType boolean).
    logLevel Any
    Gets or sets the log level, support: Info, Warning. Type: string (or Expression with resultType string).

    CopyActivityResponse, CopyActivityResponseArgs

    Name string
    Activity name.
    Sink Pulumi.AzureNative.DataFactory.Inputs.AvroSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataExplorerSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDatabricksDeltaLakeSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureMySqlSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.AzurePostgreSqlSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureQueueSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureSearchIndexSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureSqlSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureTableSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.BinarySinkResponse | Pulumi.AzureNative.DataFactory.Inputs.BlobSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.CommonDataServiceForAppsSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.CosmosDbMongoDbApiSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.CosmosDbSqlApiSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.DelimitedTextSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.DocumentDbCollectionSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.DynamicsCrmSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.DynamicsSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.FileSystemSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.InformixSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.JsonSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseTableSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.MicrosoftAccessSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.MongoDbAtlasSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.MongoDbV2SinkResponse | Pulumi.AzureNative.DataFactory.Inputs.OdbcSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.OracleSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.OrcSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.ParquetSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.RestSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.SalesforceServiceCloudSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.SalesforceServiceCloudV2SinkResponse | Pulumi.AzureNative.DataFactory.Inputs.SalesforceSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.SalesforceV2SinkResponse | Pulumi.AzureNative.DataFactory.Inputs.SapCloudForCustomerSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.SnowflakeSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.SnowflakeV2SinkResponse | Pulumi.AzureNative.DataFactory.Inputs.SqlDWSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.SqlMISinkResponse | Pulumi.AzureNative.DataFactory.Inputs.SqlServerSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.SqlSinkResponse | Pulumi.AzureNative.DataFactory.Inputs.WarehouseSinkResponse
    Copy activity sink.
    Source Pulumi.AzureNative.DataFactory.Inputs.AmazonMWSSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.AmazonRdsForOracleSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.AmazonRdsForSqlServerSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.AmazonRedshiftSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.AvroSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataExplorerSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDatabricksDeltaLakeSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureMariaDBSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureMySqlSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.AzurePostgreSqlSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureSqlSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureTableSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.BinarySourceResponse | Pulumi.AzureNative.DataFactory.Inputs.BlobSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.CassandraSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.CommonDataServiceForAppsSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.ConcurSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.CosmosDbMongoDbApiSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.CosmosDbSqlApiSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.CouchbaseSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.Db2SourceResponse | Pulumi.AzureNative.DataFactory.Inputs.DelimitedTextSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.DocumentDbCollectionSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.DrillSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.DynamicsAXSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.DynamicsCrmSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.DynamicsSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.EloquaSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.ExcelSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.FileSystemSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.GoogleAdWordsSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.GoogleBigQuerySourceResponse | Pulumi.AzureNative.DataFactory.Inputs.GoogleBigQueryV2SourceResponse | Pulumi.AzureNative.DataFactory.Inputs.GreenplumSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.HBaseSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.HdfsSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.HiveSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.HttpSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.HubspotSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.ImpalaSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.InformixSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.JiraSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.JsonSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseTableSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.MagentoSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.MariaDBSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.MarketoSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.MicrosoftAccessSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.MongoDbAtlasSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.MongoDbSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.MongoDbV2SourceResponse | Pulumi.AzureNative.DataFactory.Inputs.MySqlSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.NetezzaSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.ODataSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.OdbcSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.Office365SourceResponse | Pulumi.AzureNative.DataFactory.Inputs.OracleServiceCloudSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.OracleSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.OrcSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.ParquetSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.PaypalSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.PhoenixSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.PostgreSqlSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.PostgreSqlV2SourceResponse | Pulumi.AzureNative.DataFactory.Inputs.PrestoSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.QuickBooksSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.RelationalSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.ResponsysSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.RestSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SalesforceMarketingCloudSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SalesforceServiceCloudSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SalesforceServiceCloudV2SourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SalesforceSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SalesforceV2SourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SapBwSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SapCloudForCustomerSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SapEccSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SapHanaSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SapOdpSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SapOpenHubSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SapTableSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.ServiceNowSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.ServiceNowV2SourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SharePointOnlineListSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.ShopifySourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SnowflakeSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SnowflakeV2SourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SparkSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SqlDWSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SqlMISourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SqlServerSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SqlSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SquareSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.SybaseSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.TabularSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.TeradataSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.VerticaSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.WarehouseSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.WebSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.XeroSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.XmlSourceResponse | Pulumi.AzureNative.DataFactory.Inputs.ZohoSourceResponse
    Copy activity source.
    DataIntegrationUnits object
    Maximum number of data integration units that can be used to perform this data movement. Type: integer (or Expression with resultType integer), minimum: 0.
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependencyResponse>
    Activity depends on condition.
    Description string
    Activity description.
    EnableSkipIncompatibleRow object
    Whether to skip incompatible row. Default value is false. Type: boolean (or Expression with resultType boolean).
    EnableStaging object
    Specifies whether to copy data via an interim staging. Default value is false. Type: boolean (or Expression with resultType boolean).
    Inputs List<Pulumi.AzureNative.DataFactory.Inputs.DatasetReferenceResponse>
    List of inputs for the activity.
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    Linked service reference.
    LogSettings Pulumi.AzureNative.DataFactory.Inputs.LogSettingsResponse
    Log settings customer needs provide when enabling log.
    LogStorageSettings Pulumi.AzureNative.DataFactory.Inputs.LogStorageSettingsResponse
    (Deprecated. Please use LogSettings) Log storage settings customer need to provide when enabling session log.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Outputs List<Pulumi.AzureNative.DataFactory.Inputs.DatasetReferenceResponse>
    List of outputs for the activity.
    ParallelCopies object
    Maximum number of concurrent sessions opened on the source or sink to avoid overloading the data store. Type: integer (or Expression with resultType integer), minimum: 0.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicyResponse
    Activity policy.
    Preserve List<object>
    Preserve rules.
    PreserveRules List<object>
    Preserve Rules.
    RedirectIncompatibleRowSettings Pulumi.AzureNative.DataFactory.Inputs.RedirectIncompatibleRowSettingsResponse
    Redirect incompatible row settings when EnableSkipIncompatibleRow is true.
    SkipErrorFile Pulumi.AzureNative.DataFactory.Inputs.SkipErrorFileResponse
    Specify the fault tolerance for data consistency.
    StagingSettings Pulumi.AzureNative.DataFactory.Inputs.StagingSettingsResponse
    Specifies interim staging settings when EnableStaging is true.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    Translator object
    Copy activity translator. If not specified, tabular translator is used.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserPropertyResponse>
    Activity user properties.
    ValidateDataConsistency object
    Whether to enable Data Consistency validation. Type: boolean (or Expression with resultType boolean).
    Name string
    Activity name.
    Sink AvroSinkResponse | AzureBlobFSSinkResponse | AzureDataExplorerSinkResponse | AzureDataLakeStoreSinkResponse | AzureDatabricksDeltaLakeSinkResponse | AzureMySqlSinkResponse | AzurePostgreSqlSinkResponse | AzureQueueSinkResponse | AzureSearchIndexSinkResponse | AzureSqlSinkResponse | AzureTableSinkResponse | BinarySinkResponse | BlobSinkResponse | CommonDataServiceForAppsSinkResponse | CosmosDbMongoDbApiSinkResponse | CosmosDbSqlApiSinkResponse | DelimitedTextSinkResponse | DocumentDbCollectionSinkResponse | DynamicsCrmSinkResponse | DynamicsSinkResponse | FileSystemSinkResponse | InformixSinkResponse | JsonSinkResponse | LakeHouseTableSinkResponse | MicrosoftAccessSinkResponse | MongoDbAtlasSinkResponse | MongoDbV2SinkResponse | OdbcSinkResponse | OracleSinkResponse | OrcSinkResponse | ParquetSinkResponse | RestSinkResponse | SalesforceServiceCloudSinkResponse | SalesforceServiceCloudV2SinkResponse | SalesforceSinkResponse | SalesforceV2SinkResponse | SapCloudForCustomerSinkResponse | SnowflakeSinkResponse | SnowflakeV2SinkResponse | SqlDWSinkResponse | SqlMISinkResponse | SqlServerSinkResponse | SqlSinkResponse | WarehouseSinkResponse
    Copy activity sink.
    Source AmazonMWSSourceResponse | AmazonRdsForOracleSourceResponse | AmazonRdsForSqlServerSourceResponse | AmazonRedshiftSourceResponse | AvroSourceResponse | AzureBlobFSSourceResponse | AzureDataExplorerSourceResponse | AzureDataLakeStoreSourceResponse | AzureDatabricksDeltaLakeSourceResponse | AzureMariaDBSourceResponse | AzureMySqlSourceResponse | AzurePostgreSqlSourceResponse | AzureSqlSourceResponse | AzureTableSourceResponse | BinarySourceResponse | BlobSourceResponse | CassandraSourceResponse | CommonDataServiceForAppsSourceResponse | ConcurSourceResponse | CosmosDbMongoDbApiSourceResponse | CosmosDbSqlApiSourceResponse | CouchbaseSourceResponse | Db2SourceResponse | DelimitedTextSourceResponse | DocumentDbCollectionSourceResponse | DrillSourceResponse | DynamicsAXSourceResponse | DynamicsCrmSourceResponse | DynamicsSourceResponse | EloquaSourceResponse | ExcelSourceResponse | FileSystemSourceResponse | GoogleAdWordsSourceResponse | GoogleBigQuerySourceResponse | GoogleBigQueryV2SourceResponse | GreenplumSourceResponse | HBaseSourceResponse | HdfsSourceResponse | HiveSourceResponse | HttpSourceResponse | HubspotSourceResponse | ImpalaSourceResponse | InformixSourceResponse | JiraSourceResponse | JsonSourceResponse | LakeHouseTableSourceResponse | MagentoSourceResponse | MariaDBSourceResponse | MarketoSourceResponse | MicrosoftAccessSourceResponse | MongoDbAtlasSourceResponse | MongoDbSourceResponse | MongoDbV2SourceResponse | MySqlSourceResponse | NetezzaSourceResponse | ODataSourceResponse | OdbcSourceResponse | Office365SourceResponse | OracleServiceCloudSourceResponse | OracleSourceResponse | OrcSourceResponse | ParquetSourceResponse | PaypalSourceResponse | PhoenixSourceResponse | PostgreSqlSourceResponse | PostgreSqlV2SourceResponse | PrestoSourceResponse | QuickBooksSourceResponse | RelationalSourceResponse | ResponsysSourceResponse | RestSourceResponse | SalesforceMarketingCloudSourceResponse | SalesforceServiceCloudSourceResponse | SalesforceServiceCloudV2SourceResponse | SalesforceSourceResponse | SalesforceV2SourceResponse | SapBwSourceResponse | SapCloudForCustomerSourceResponse | SapEccSourceResponse | SapHanaSourceResponse | SapOdpSourceResponse | SapOpenHubSourceResponse | SapTableSourceResponse | ServiceNowSourceResponse | ServiceNowV2SourceResponse | SharePointOnlineListSourceResponse | ShopifySourceResponse | SnowflakeSourceResponse | SnowflakeV2SourceResponse | SparkSourceResponse | SqlDWSourceResponse | SqlMISourceResponse | SqlServerSourceResponse | SqlSourceResponse | SquareSourceResponse | SybaseSourceResponse | TabularSourceResponse | TeradataSourceResponse | VerticaSourceResponse | WarehouseSourceResponse | WebSourceResponse | XeroSourceResponse | XmlSourceResponse | ZohoSourceResponse
    Copy activity source.
    DataIntegrationUnits interface{}
    Maximum number of data integration units that can be used to perform this data movement. Type: integer (or Expression with resultType integer), minimum: 0.
    DependsOn []ActivityDependencyResponse
    Activity depends on condition.
    Description string
    Activity description.
    EnableSkipIncompatibleRow interface{}
    Whether to skip incompatible row. Default value is false. Type: boolean (or Expression with resultType boolean).
    EnableStaging interface{}
    Specifies whether to copy data via an interim staging. Default value is false. Type: boolean (or Expression with resultType boolean).
    Inputs []DatasetReferenceResponse
    List of inputs for the activity.
    LinkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    LogSettings LogSettingsResponse
    Log settings customer needs provide when enabling log.
    LogStorageSettings LogStorageSettingsResponse
    (Deprecated. Please use LogSettings) Log storage settings customer need to provide when enabling session log.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Outputs []DatasetReferenceResponse
    List of outputs for the activity.
    ParallelCopies interface{}
    Maximum number of concurrent sessions opened on the source or sink to avoid overloading the data store. Type: integer (or Expression with resultType integer), minimum: 0.
    Policy ActivityPolicyResponse
    Activity policy.
    Preserve []interface{}
    Preserve rules.
    PreserveRules []interface{}
    Preserve Rules.
    RedirectIncompatibleRowSettings RedirectIncompatibleRowSettingsResponse
    Redirect incompatible row settings when EnableSkipIncompatibleRow is true.
    SkipErrorFile SkipErrorFileResponse
    Specify the fault tolerance for data consistency.
    StagingSettings StagingSettingsResponse
    Specifies interim staging settings when EnableStaging is true.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    Translator interface{}
    Copy activity translator. If not specified, tabular translator is used.
    UserProperties []UserPropertyResponse
    Activity user properties.
    ValidateDataConsistency interface{}
    Whether to enable Data Consistency validation. Type: boolean (or Expression with resultType boolean).
    name String
    Activity name.
    sink AvroSinkResponse | AzureBlobFSSinkResponse | AzureDataExplorerSinkResponse | AzureDataLakeStoreSinkResponse | AzureDatabricksDeltaLakeSinkResponse | AzureMySqlSinkResponse | AzurePostgreSqlSinkResponse | AzureQueueSinkResponse | AzureSearchIndexSinkResponse | AzureSqlSinkResponse | AzureTableSinkResponse | BinarySinkResponse | BlobSinkResponse | CommonDataServiceForAppsSinkResponse | CosmosDbMongoDbApiSinkResponse | CosmosDbSqlApiSinkResponse | DelimitedTextSinkResponse | DocumentDbCollectionSinkResponse | DynamicsCrmSinkResponse | DynamicsSinkResponse | FileSystemSinkResponse | InformixSinkResponse | JsonSinkResponse | LakeHouseTableSinkResponse | MicrosoftAccessSinkResponse | MongoDbAtlasSinkResponse | MongoDbV2SinkResponse | OdbcSinkResponse | OracleSinkResponse | OrcSinkResponse | ParquetSinkResponse | RestSinkResponse | SalesforceServiceCloudSinkResponse | SalesforceServiceCloudV2SinkResponse | SalesforceSinkResponse | SalesforceV2SinkResponse | SapCloudForCustomerSinkResponse | SnowflakeSinkResponse | SnowflakeV2SinkResponse | SqlDWSinkResponse | SqlMISinkResponse | SqlServerSinkResponse | SqlSinkResponse | WarehouseSinkResponse
    Copy activity sink.
    source AmazonMWSSourceResponse | AmazonRdsForOracleSourceResponse | AmazonRdsForSqlServerSourceResponse | AmazonRedshiftSourceResponse | AvroSourceResponse | AzureBlobFSSourceResponse | AzureDataExplorerSourceResponse | AzureDataLakeStoreSourceResponse | AzureDatabricksDeltaLakeSourceResponse | AzureMariaDBSourceResponse | AzureMySqlSourceResponse | AzurePostgreSqlSourceResponse | AzureSqlSourceResponse | AzureTableSourceResponse | BinarySourceResponse | BlobSourceResponse | CassandraSourceResponse | CommonDataServiceForAppsSourceResponse | ConcurSourceResponse | CosmosDbMongoDbApiSourceResponse | CosmosDbSqlApiSourceResponse | CouchbaseSourceResponse | Db2SourceResponse | DelimitedTextSourceResponse | DocumentDbCollectionSourceResponse | DrillSourceResponse | DynamicsAXSourceResponse | DynamicsCrmSourceResponse | DynamicsSourceResponse | EloquaSourceResponse | ExcelSourceResponse | FileSystemSourceResponse | GoogleAdWordsSourceResponse | GoogleBigQuerySourceResponse | GoogleBigQueryV2SourceResponse | GreenplumSourceResponse | HBaseSourceResponse | HdfsSourceResponse | HiveSourceResponse | HttpSourceResponse | HubspotSourceResponse | ImpalaSourceResponse | InformixSourceResponse | JiraSourceResponse | JsonSourceResponse | LakeHouseTableSourceResponse | MagentoSourceResponse | MariaDBSourceResponse | MarketoSourceResponse | MicrosoftAccessSourceResponse | MongoDbAtlasSourceResponse | MongoDbSourceResponse | MongoDbV2SourceResponse | MySqlSourceResponse | NetezzaSourceResponse | ODataSourceResponse | OdbcSourceResponse | Office365SourceResponse | OracleServiceCloudSourceResponse | OracleSourceResponse | OrcSourceResponse | ParquetSourceResponse | PaypalSourceResponse | PhoenixSourceResponse | PostgreSqlSourceResponse | PostgreSqlV2SourceResponse | PrestoSourceResponse | QuickBooksSourceResponse | RelationalSourceResponse | ResponsysSourceResponse | RestSourceResponse | SalesforceMarketingCloudSourceResponse | SalesforceServiceCloudSourceResponse | SalesforceServiceCloudV2SourceResponse | SalesforceSourceResponse | SalesforceV2SourceResponse | SapBwSourceResponse | SapCloudForCustomerSourceResponse | SapEccSourceResponse | SapHanaSourceResponse | SapOdpSourceResponse | SapOpenHubSourceResponse | SapTableSourceResponse | ServiceNowSourceResponse | ServiceNowV2SourceResponse | SharePointOnlineListSourceResponse | ShopifySourceResponse | SnowflakeSourceResponse | SnowflakeV2SourceResponse | SparkSourceResponse | SqlDWSourceResponse | SqlMISourceResponse | SqlServerSourceResponse | SqlSourceResponse | SquareSourceResponse | SybaseSourceResponse | TabularSourceResponse | TeradataSourceResponse | VerticaSourceResponse | WarehouseSourceResponse | WebSourceResponse | XeroSourceResponse | XmlSourceResponse | ZohoSourceResponse
    Copy activity source.
    dataIntegrationUnits Object
    Maximum number of data integration units that can be used to perform this data movement. Type: integer (or Expression with resultType integer), minimum: 0.
    dependsOn List<ActivityDependencyResponse>
    Activity depends on condition.
    description String
    Activity description.
    enableSkipIncompatibleRow Object
    Whether to skip incompatible row. Default value is false. Type: boolean (or Expression with resultType boolean).
    enableStaging Object
    Specifies whether to copy data via an interim staging. Default value is false. Type: boolean (or Expression with resultType boolean).
    inputs List<DatasetReferenceResponse>
    List of inputs for the activity.
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    logSettings LogSettingsResponse
    Log settings customer needs provide when enabling log.
    logStorageSettings LogStorageSettingsResponse
    (Deprecated. Please use LogSettings) Log storage settings customer need to provide when enabling session log.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    outputs List<DatasetReferenceResponse>
    List of outputs for the activity.
    parallelCopies Object
    Maximum number of concurrent sessions opened on the source or sink to avoid overloading the data store. Type: integer (or Expression with resultType integer), minimum: 0.
    policy ActivityPolicyResponse
    Activity policy.
    preserve List<Object>
    Preserve rules.
    preserveRules List<Object>
    Preserve Rules.
    redirectIncompatibleRowSettings RedirectIncompatibleRowSettingsResponse
    Redirect incompatible row settings when EnableSkipIncompatibleRow is true.
    skipErrorFile SkipErrorFileResponse
    Specify the fault tolerance for data consistency.
    stagingSettings StagingSettingsResponse
    Specifies interim staging settings when EnableStaging is true.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    translator Object
    Copy activity translator. If not specified, tabular translator is used.
    userProperties List<UserPropertyResponse>
    Activity user properties.
    validateDataConsistency Object
    Whether to enable Data Consistency validation. Type: boolean (or Expression with resultType boolean).
    name string
    Activity name.
    sink AvroSinkResponse | AzureBlobFSSinkResponse | AzureDataExplorerSinkResponse | AzureDataLakeStoreSinkResponse | AzureDatabricksDeltaLakeSinkResponse | AzureMySqlSinkResponse | AzurePostgreSqlSinkResponse | AzureQueueSinkResponse | AzureSearchIndexSinkResponse | AzureSqlSinkResponse | AzureTableSinkResponse | BinarySinkResponse | BlobSinkResponse | CommonDataServiceForAppsSinkResponse | CosmosDbMongoDbApiSinkResponse | CosmosDbSqlApiSinkResponse | DelimitedTextSinkResponse | DocumentDbCollectionSinkResponse | DynamicsCrmSinkResponse | DynamicsSinkResponse | FileSystemSinkResponse | InformixSinkResponse | JsonSinkResponse | LakeHouseTableSinkResponse | MicrosoftAccessSinkResponse | MongoDbAtlasSinkResponse | MongoDbV2SinkResponse | OdbcSinkResponse | OracleSinkResponse | OrcSinkResponse | ParquetSinkResponse | RestSinkResponse | SalesforceServiceCloudSinkResponse | SalesforceServiceCloudV2SinkResponse | SalesforceSinkResponse | SalesforceV2SinkResponse | SapCloudForCustomerSinkResponse | SnowflakeSinkResponse | SnowflakeV2SinkResponse | SqlDWSinkResponse | SqlMISinkResponse | SqlServerSinkResponse | SqlSinkResponse | WarehouseSinkResponse
    Copy activity sink.
    source AmazonMWSSourceResponse | AmazonRdsForOracleSourceResponse | AmazonRdsForSqlServerSourceResponse | AmazonRedshiftSourceResponse | AvroSourceResponse | AzureBlobFSSourceResponse | AzureDataExplorerSourceResponse | AzureDataLakeStoreSourceResponse | AzureDatabricksDeltaLakeSourceResponse | AzureMariaDBSourceResponse | AzureMySqlSourceResponse | AzurePostgreSqlSourceResponse | AzureSqlSourceResponse | AzureTableSourceResponse | BinarySourceResponse | BlobSourceResponse | CassandraSourceResponse | CommonDataServiceForAppsSourceResponse | ConcurSourceResponse | CosmosDbMongoDbApiSourceResponse | CosmosDbSqlApiSourceResponse | CouchbaseSourceResponse | Db2SourceResponse | DelimitedTextSourceResponse | DocumentDbCollectionSourceResponse | DrillSourceResponse | DynamicsAXSourceResponse | DynamicsCrmSourceResponse | DynamicsSourceResponse | EloquaSourceResponse | ExcelSourceResponse | FileSystemSourceResponse | GoogleAdWordsSourceResponse | GoogleBigQuerySourceResponse | GoogleBigQueryV2SourceResponse | GreenplumSourceResponse | HBaseSourceResponse | HdfsSourceResponse | HiveSourceResponse | HttpSourceResponse | HubspotSourceResponse | ImpalaSourceResponse | InformixSourceResponse | JiraSourceResponse | JsonSourceResponse | LakeHouseTableSourceResponse | MagentoSourceResponse | MariaDBSourceResponse | MarketoSourceResponse | MicrosoftAccessSourceResponse | MongoDbAtlasSourceResponse | MongoDbSourceResponse | MongoDbV2SourceResponse | MySqlSourceResponse | NetezzaSourceResponse | ODataSourceResponse | OdbcSourceResponse | Office365SourceResponse | OracleServiceCloudSourceResponse | OracleSourceResponse | OrcSourceResponse | ParquetSourceResponse | PaypalSourceResponse | PhoenixSourceResponse | PostgreSqlSourceResponse | PostgreSqlV2SourceResponse | PrestoSourceResponse | QuickBooksSourceResponse | RelationalSourceResponse | ResponsysSourceResponse | RestSourceResponse | SalesforceMarketingCloudSourceResponse | SalesforceServiceCloudSourceResponse | SalesforceServiceCloudV2SourceResponse | SalesforceSourceResponse | SalesforceV2SourceResponse | SapBwSourceResponse | SapCloudForCustomerSourceResponse | SapEccSourceResponse | SapHanaSourceResponse | SapOdpSourceResponse | SapOpenHubSourceResponse | SapTableSourceResponse | ServiceNowSourceResponse | ServiceNowV2SourceResponse | SharePointOnlineListSourceResponse | ShopifySourceResponse | SnowflakeSourceResponse | SnowflakeV2SourceResponse | SparkSourceResponse | SqlDWSourceResponse | SqlMISourceResponse | SqlServerSourceResponse | SqlSourceResponse | SquareSourceResponse | SybaseSourceResponse | TabularSourceResponse | TeradataSourceResponse | VerticaSourceResponse | WarehouseSourceResponse | WebSourceResponse | XeroSourceResponse | XmlSourceResponse | ZohoSourceResponse
    Copy activity source.
    dataIntegrationUnits any
    Maximum number of data integration units that can be used to perform this data movement. Type: integer (or Expression with resultType integer), minimum: 0.
    dependsOn ActivityDependencyResponse[]
    Activity depends on condition.
    description string
    Activity description.
    enableSkipIncompatibleRow any
    Whether to skip incompatible row. Default value is false. Type: boolean (or Expression with resultType boolean).
    enableStaging any
    Specifies whether to copy data via an interim staging. Default value is false. Type: boolean (or Expression with resultType boolean).
    inputs DatasetReferenceResponse[]
    List of inputs for the activity.
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    logSettings LogSettingsResponse
    Log settings customer needs provide when enabling log.
    logStorageSettings LogStorageSettingsResponse
    (Deprecated. Please use LogSettings) Log storage settings customer need to provide when enabling session log.
    onInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    outputs DatasetReferenceResponse[]
    List of outputs for the activity.
    parallelCopies any
    Maximum number of concurrent sessions opened on the source or sink to avoid overloading the data store. Type: integer (or Expression with resultType integer), minimum: 0.
    policy ActivityPolicyResponse
    Activity policy.
    preserve any[]
    Preserve rules.
    preserveRules any[]
    Preserve Rules.
    redirectIncompatibleRowSettings RedirectIncompatibleRowSettingsResponse
    Redirect incompatible row settings when EnableSkipIncompatibleRow is true.
    skipErrorFile SkipErrorFileResponse
    Specify the fault tolerance for data consistency.
    stagingSettings StagingSettingsResponse
    Specifies interim staging settings when EnableStaging is true.
    state string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    translator any
    Copy activity translator. If not specified, tabular translator is used.
    userProperties UserPropertyResponse[]
    Activity user properties.
    validateDataConsistency any
    Whether to enable Data Consistency validation. Type: boolean (or Expression with resultType boolean).
    name str
    Activity name.
    sink AvroSinkResponse | AzureBlobFSSinkResponse | AzureDataExplorerSinkResponse | AzureDataLakeStoreSinkResponse | AzureDatabricksDeltaLakeSinkResponse | AzureMySqlSinkResponse | AzurePostgreSqlSinkResponse | AzureQueueSinkResponse | AzureSearchIndexSinkResponse | AzureSqlSinkResponse | AzureTableSinkResponse | BinarySinkResponse | BlobSinkResponse | CommonDataServiceForAppsSinkResponse | CosmosDbMongoDbApiSinkResponse | CosmosDbSqlApiSinkResponse | DelimitedTextSinkResponse | DocumentDbCollectionSinkResponse | DynamicsCrmSinkResponse | DynamicsSinkResponse | FileSystemSinkResponse | InformixSinkResponse | JsonSinkResponse | LakeHouseTableSinkResponse | MicrosoftAccessSinkResponse | MongoDbAtlasSinkResponse | MongoDbV2SinkResponse | OdbcSinkResponse | OracleSinkResponse | OrcSinkResponse | ParquetSinkResponse | RestSinkResponse | SalesforceServiceCloudSinkResponse | SalesforceServiceCloudV2SinkResponse | SalesforceSinkResponse | SalesforceV2SinkResponse | SapCloudForCustomerSinkResponse | SnowflakeSinkResponse | SnowflakeV2SinkResponse | SqlDWSinkResponse | SqlMISinkResponse | SqlServerSinkResponse | SqlSinkResponse | WarehouseSinkResponse
    Copy activity sink.
    source AmazonMWSSourceResponse | AmazonRdsForOracleSourceResponse | AmazonRdsForSqlServerSourceResponse | AmazonRedshiftSourceResponse | AvroSourceResponse | AzureBlobFSSourceResponse | AzureDataExplorerSourceResponse | AzureDataLakeStoreSourceResponse | AzureDatabricksDeltaLakeSourceResponse | AzureMariaDBSourceResponse | AzureMySqlSourceResponse | AzurePostgreSqlSourceResponse | AzureSqlSourceResponse | AzureTableSourceResponse | BinarySourceResponse | BlobSourceResponse | CassandraSourceResponse | CommonDataServiceForAppsSourceResponse | ConcurSourceResponse | CosmosDbMongoDbApiSourceResponse | CosmosDbSqlApiSourceResponse | CouchbaseSourceResponse | Db2SourceResponse | DelimitedTextSourceResponse | DocumentDbCollectionSourceResponse | DrillSourceResponse | DynamicsAXSourceResponse | DynamicsCrmSourceResponse | DynamicsSourceResponse | EloquaSourceResponse | ExcelSourceResponse | FileSystemSourceResponse | GoogleAdWordsSourceResponse | GoogleBigQuerySourceResponse | GoogleBigQueryV2SourceResponse | GreenplumSourceResponse | HBaseSourceResponse | HdfsSourceResponse | HiveSourceResponse | HttpSourceResponse | HubspotSourceResponse | ImpalaSourceResponse | InformixSourceResponse | JiraSourceResponse | JsonSourceResponse | LakeHouseTableSourceResponse | MagentoSourceResponse | MariaDBSourceResponse | MarketoSourceResponse | MicrosoftAccessSourceResponse | MongoDbAtlasSourceResponse | MongoDbSourceResponse | MongoDbV2SourceResponse | MySqlSourceResponse | NetezzaSourceResponse | ODataSourceResponse | OdbcSourceResponse | Office365SourceResponse | OracleServiceCloudSourceResponse | OracleSourceResponse | OrcSourceResponse | ParquetSourceResponse | PaypalSourceResponse | PhoenixSourceResponse | PostgreSqlSourceResponse | PostgreSqlV2SourceResponse | PrestoSourceResponse | QuickBooksSourceResponse | RelationalSourceResponse | ResponsysSourceResponse | RestSourceResponse | SalesforceMarketingCloudSourceResponse | SalesforceServiceCloudSourceResponse | SalesforceServiceCloudV2SourceResponse | SalesforceSourceResponse | SalesforceV2SourceResponse | SapBwSourceResponse | SapCloudForCustomerSourceResponse | SapEccSourceResponse | SapHanaSourceResponse | SapOdpSourceResponse | SapOpenHubSourceResponse | SapTableSourceResponse | ServiceNowSourceResponse | ServiceNowV2SourceResponse | SharePointOnlineListSourceResponse | ShopifySourceResponse | SnowflakeSourceResponse | SnowflakeV2SourceResponse | SparkSourceResponse | SqlDWSourceResponse | SqlMISourceResponse | SqlServerSourceResponse | SqlSourceResponse | SquareSourceResponse | SybaseSourceResponse | TabularSourceResponse | TeradataSourceResponse | VerticaSourceResponse | WarehouseSourceResponse | WebSourceResponse | XeroSourceResponse | XmlSourceResponse | ZohoSourceResponse
    Copy activity source.
    data_integration_units Any
    Maximum number of data integration units that can be used to perform this data movement. Type: integer (or Expression with resultType integer), minimum: 0.
    depends_on Sequence[ActivityDependencyResponse]
    Activity depends on condition.
    description str
    Activity description.
    enable_skip_incompatible_row Any
    Whether to skip incompatible row. Default value is false. Type: boolean (or Expression with resultType boolean).
    enable_staging Any
    Specifies whether to copy data via an interim staging. Default value is false. Type: boolean (or Expression with resultType boolean).
    inputs Sequence[DatasetReferenceResponse]
    List of inputs for the activity.
    linked_service_name LinkedServiceReferenceResponse
    Linked service reference.
    log_settings LogSettingsResponse
    Log settings customer needs provide when enabling log.
    log_storage_settings LogStorageSettingsResponse
    (Deprecated. Please use LogSettings) Log storage settings customer need to provide when enabling session log.
    on_inactive_mark_as str
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    outputs Sequence[DatasetReferenceResponse]
    List of outputs for the activity.
    parallel_copies Any
    Maximum number of concurrent sessions opened on the source or sink to avoid overloading the data store. Type: integer (or Expression with resultType integer), minimum: 0.
    policy ActivityPolicyResponse
    Activity policy.
    preserve Sequence[Any]
    Preserve rules.
    preserve_rules Sequence[Any]
    Preserve Rules.
    redirect_incompatible_row_settings RedirectIncompatibleRowSettingsResponse
    Redirect incompatible row settings when EnableSkipIncompatibleRow is true.
    skip_error_file SkipErrorFileResponse
    Specify the fault tolerance for data consistency.
    staging_settings StagingSettingsResponse
    Specifies interim staging settings when EnableStaging is true.
    state str
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    translator Any
    Copy activity translator. If not specified, tabular translator is used.
    user_properties Sequence[UserPropertyResponse]
    Activity user properties.
    validate_data_consistency Any
    Whether to enable Data Consistency validation. Type: boolean (or Expression with resultType boolean).
    name String
    Activity name.
    sink Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    Copy activity sink.
    source Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    Copy activity source.
    dataIntegrationUnits Any
    Maximum number of data integration units that can be used to perform this data movement. Type: integer (or Expression with resultType integer), minimum: 0.
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    enableSkipIncompatibleRow Any
    Whether to skip incompatible row. Default value is false. Type: boolean (or Expression with resultType boolean).
    enableStaging Any
    Specifies whether to copy data via an interim staging. Default value is false. Type: boolean (or Expression with resultType boolean).
    inputs List<Property Map>
    List of inputs for the activity.
    linkedServiceName Property Map
    Linked service reference.
    logSettings Property Map
    Log settings customer needs provide when enabling log.
    logStorageSettings Property Map
    (Deprecated. Please use LogSettings) Log storage settings customer need to provide when enabling session log.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    outputs List<Property Map>
    List of outputs for the activity.
    parallelCopies Any
    Maximum number of concurrent sessions opened on the source or sink to avoid overloading the data store. Type: integer (or Expression with resultType integer), minimum: 0.
    policy Property Map
    Activity policy.
    preserve List<Any>
    Preserve rules.
    preserveRules List<Any>
    Preserve Rules.
    redirectIncompatibleRowSettings Property Map
    Redirect incompatible row settings when EnableSkipIncompatibleRow is true.
    skipErrorFile Property Map
    Specify the fault tolerance for data consistency.
    stagingSettings Property Map
    Specifies interim staging settings when EnableStaging is true.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    translator Any
    Copy activity translator. If not specified, tabular translator is used.
    userProperties List<Property Map>
    Activity user properties.
    validateDataConsistency Any
    Whether to enable Data Consistency validation. Type: boolean (or Expression with resultType boolean).

    CosmosDbMongoDbApiSink, CosmosDbMongoDbApiSinkArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior object
    Specifies whether the document with same key to be overwritten (upsert) rather than throw exception (insert). The default value is "insert". Type: string (or Expression with resultType string). Type: string (or Expression with resultType string).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior interface{}
    Specifies whether the document with same key to be overwritten (upsert) rather than throw exception (insert). The default value is "insert". Type: string (or Expression with resultType string). Type: string (or Expression with resultType string).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior Object
    Specifies whether the document with same key to be overwritten (upsert) rather than throw exception (insert). The default value is "insert". Type: string (or Expression with resultType string). Type: string (or Expression with resultType string).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior any
    Specifies whether the document with same key to be overwritten (upsert) rather than throw exception (insert). The default value is "insert". Type: string (or Expression with resultType string). Type: string (or Expression with resultType string).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_behavior Any
    Specifies whether the document with same key to be overwritten (upsert) rather than throw exception (insert). The default value is "insert". Type: string (or Expression with resultType string). Type: string (or Expression with resultType string).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior Any
    Specifies whether the document with same key to be overwritten (upsert) rather than throw exception (insert). The default value is "insert". Type: string (or Expression with resultType string). Type: string (or Expression with resultType string).

    CosmosDbMongoDbApiSinkResponse, CosmosDbMongoDbApiSinkResponseArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior object
    Specifies whether the document with same key to be overwritten (upsert) rather than throw exception (insert). The default value is "insert". Type: string (or Expression with resultType string). Type: string (or Expression with resultType string).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior interface{}
    Specifies whether the document with same key to be overwritten (upsert) rather than throw exception (insert). The default value is "insert". Type: string (or Expression with resultType string). Type: string (or Expression with resultType string).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior Object
    Specifies whether the document with same key to be overwritten (upsert) rather than throw exception (insert). The default value is "insert". Type: string (or Expression with resultType string). Type: string (or Expression with resultType string).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior any
    Specifies whether the document with same key to be overwritten (upsert) rather than throw exception (insert). The default value is "insert". Type: string (or Expression with resultType string). Type: string (or Expression with resultType string).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_behavior Any
    Specifies whether the document with same key to be overwritten (upsert) rather than throw exception (insert). The default value is "insert". Type: string (or Expression with resultType string). Type: string (or Expression with resultType string).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior Any
    Specifies whether the document with same key to be overwritten (upsert) rather than throw exception (insert). The default value is "insert". Type: string (or Expression with resultType string). Type: string (or Expression with resultType string).

    CosmosDbMongoDbApiSource, CosmosDbMongoDbApiSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    BatchSize object
    Specifies the number of documents to return in each batch of the response from MongoDB instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer).
    CursorMethods Pulumi.AzureNative.DataFactory.Inputs.MongoDbCursorMethodsProperties
    Cursor methods for Mongodb query.
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    Filter object
    Specifies selection filter using query operators. To return all documents in a collection, omit this parameter or pass an empty document ({}). Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    BatchSize interface{}
    Specifies the number of documents to return in each batch of the response from MongoDB instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer).
    CursorMethods MongoDbCursorMethodsProperties
    Cursor methods for Mongodb query.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    Filter interface{}
    Specifies selection filter using query operators. To return all documents in a collection, omit this parameter or pass an empty document ({}). Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    batchSize Object
    Specifies the number of documents to return in each batch of the response from MongoDB instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer).
    cursorMethods MongoDbCursorMethodsProperties
    Cursor methods for Mongodb query.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    filter Object
    Specifies selection filter using query operators. To return all documents in a collection, omit this parameter or pass an empty document ({}). Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    batchSize any
    Specifies the number of documents to return in each batch of the response from MongoDB instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer).
    cursorMethods MongoDbCursorMethodsProperties
    Cursor methods for Mongodb query.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    filter any
    Specifies selection filter using query operators. To return all documents in a collection, omit this parameter or pass an empty document ({}). Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    batch_size Any
    Specifies the number of documents to return in each batch of the response from MongoDB instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer).
    cursor_methods MongoDbCursorMethodsProperties
    Cursor methods for Mongodb query.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    filter Any
    Specifies selection filter using query operators. To return all documents in a collection, omit this parameter or pass an empty document ({}). Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    batchSize Any
    Specifies the number of documents to return in each batch of the response from MongoDB instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer).
    cursorMethods Property Map
    Cursor methods for Mongodb query.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    filter Any
    Specifies selection filter using query operators. To return all documents in a collection, omit this parameter or pass an empty document ({}). Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    CosmosDbMongoDbApiSourceResponse, CosmosDbMongoDbApiSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    BatchSize object
    Specifies the number of documents to return in each batch of the response from MongoDB instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer).
    CursorMethods Pulumi.AzureNative.DataFactory.Inputs.MongoDbCursorMethodsPropertiesResponse
    Cursor methods for Mongodb query.
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    Filter object
    Specifies selection filter using query operators. To return all documents in a collection, omit this parameter or pass an empty document ({}). Type: string (or Expression with resultType string).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    BatchSize interface{}
    Specifies the number of documents to return in each batch of the response from MongoDB instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer).
    CursorMethods MongoDbCursorMethodsPropertiesResponse
    Cursor methods for Mongodb query.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    Filter interface{}
    Specifies selection filter using query operators. To return all documents in a collection, omit this parameter or pass an empty document ({}). Type: string (or Expression with resultType string).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    batchSize Object
    Specifies the number of documents to return in each batch of the response from MongoDB instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer).
    cursorMethods MongoDbCursorMethodsPropertiesResponse
    Cursor methods for Mongodb query.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    filter Object
    Specifies selection filter using query operators. To return all documents in a collection, omit this parameter or pass an empty document ({}). Type: string (or Expression with resultType string).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    batchSize any
    Specifies the number of documents to return in each batch of the response from MongoDB instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer).
    cursorMethods MongoDbCursorMethodsPropertiesResponse
    Cursor methods for Mongodb query.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    filter any
    Specifies selection filter using query operators. To return all documents in a collection, omit this parameter or pass an empty document ({}). Type: string (or Expression with resultType string).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    batch_size Any
    Specifies the number of documents to return in each batch of the response from MongoDB instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer).
    cursor_methods MongoDbCursorMethodsPropertiesResponse
    Cursor methods for Mongodb query.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    filter Any
    Specifies selection filter using query operators. To return all documents in a collection, omit this parameter or pass an empty document ({}). Type: string (or Expression with resultType string).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    batchSize Any
    Specifies the number of documents to return in each batch of the response from MongoDB instance. In most cases, modifying the batch size will not affect the user or the application. This property's main purpose is to avoid hit the limitation of response size. Type: integer (or Expression with resultType integer).
    cursorMethods Property Map
    Cursor methods for Mongodb query.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    filter Any
    Specifies selection filter using query operators. To return all documents in a collection, omit this parameter or pass an empty document ({}). Type: string (or Expression with resultType string).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    CosmosDbSqlApiSink, CosmosDbSqlApiSinkArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior object
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior interface{}
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior Object
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior any
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_behavior Any
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior Any
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.

    CosmosDbSqlApiSinkResponse, CosmosDbSqlApiSinkResponseArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior object
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior interface{}
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior Object
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior any
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_behavior Any
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior Any
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.

    CosmosDbSqlApiSource, CosmosDbSqlApiSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DetectDatetime object
    Whether detect primitive values as datetime values. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    PageSize object
    Page size of the result. Type: integer (or Expression with resultType integer).
    PreferredRegions object
    Preferred regions. Type: array of strings (or Expression with resultType array of strings).
    Query object
    SQL API query. Type: string (or Expression with resultType string).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DetectDatetime interface{}
    Whether detect primitive values as datetime values. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    PageSize interface{}
    Page size of the result. Type: integer (or Expression with resultType integer).
    PreferredRegions interface{}
    Preferred regions. Type: array of strings (or Expression with resultType array of strings).
    Query interface{}
    SQL API query. Type: string (or Expression with resultType string).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    detectDatetime Object
    Whether detect primitive values as datetime values. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    pageSize Object
    Page size of the result. Type: integer (or Expression with resultType integer).
    preferredRegions Object
    Preferred regions. Type: array of strings (or Expression with resultType array of strings).
    query Object
    SQL API query. Type: string (or Expression with resultType string).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    detectDatetime any
    Whether detect primitive values as datetime values. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    pageSize any
    Page size of the result. Type: integer (or Expression with resultType integer).
    preferredRegions any
    Preferred regions. Type: array of strings (or Expression with resultType array of strings).
    query any
    SQL API query. Type: string (or Expression with resultType string).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    detect_datetime Any
    Whether detect primitive values as datetime values. Type: boolean (or Expression with resultType boolean).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    page_size Any
    Page size of the result. Type: integer (or Expression with resultType integer).
    preferred_regions Any
    Preferred regions. Type: array of strings (or Expression with resultType array of strings).
    query Any
    SQL API query. Type: string (or Expression with resultType string).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    detectDatetime Any
    Whether detect primitive values as datetime values. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    pageSize Any
    Page size of the result. Type: integer (or Expression with resultType integer).
    preferredRegions Any
    Preferred regions. Type: array of strings (or Expression with resultType array of strings).
    query Any
    SQL API query. Type: string (or Expression with resultType string).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    CosmosDbSqlApiSourceResponse, CosmosDbSqlApiSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DetectDatetime object
    Whether detect primitive values as datetime values. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    PageSize object
    Page size of the result. Type: integer (or Expression with resultType integer).
    PreferredRegions object
    Preferred regions. Type: array of strings (or Expression with resultType array of strings).
    Query object
    SQL API query. Type: string (or Expression with resultType string).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DetectDatetime interface{}
    Whether detect primitive values as datetime values. Type: boolean (or Expression with resultType boolean).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    PageSize interface{}
    Page size of the result. Type: integer (or Expression with resultType integer).
    PreferredRegions interface{}
    Preferred regions. Type: array of strings (or Expression with resultType array of strings).
    Query interface{}
    SQL API query. Type: string (or Expression with resultType string).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    detectDatetime Object
    Whether detect primitive values as datetime values. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    pageSize Object
    Page size of the result. Type: integer (or Expression with resultType integer).
    preferredRegions Object
    Preferred regions. Type: array of strings (or Expression with resultType array of strings).
    query Object
    SQL API query. Type: string (or Expression with resultType string).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    detectDatetime any
    Whether detect primitive values as datetime values. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    pageSize any
    Page size of the result. Type: integer (or Expression with resultType integer).
    preferredRegions any
    Preferred regions. Type: array of strings (or Expression with resultType array of strings).
    query any
    SQL API query. Type: string (or Expression with resultType string).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    detect_datetime Any
    Whether detect primitive values as datetime values. Type: boolean (or Expression with resultType boolean).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    page_size Any
    Page size of the result. Type: integer (or Expression with resultType integer).
    preferred_regions Any
    Preferred regions. Type: array of strings (or Expression with resultType array of strings).
    query Any
    SQL API query. Type: string (or Expression with resultType string).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    detectDatetime Any
    Whether detect primitive values as datetime values. Type: boolean (or Expression with resultType boolean).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    pageSize Any
    Page size of the result. Type: integer (or Expression with resultType integer).
    preferredRegions Any
    Preferred regions. Type: array of strings (or Expression with resultType array of strings).
    query Any
    SQL API query. Type: string (or Expression with resultType string).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    CouchbaseSource, CouchbaseSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    CouchbaseSourceResponse, CouchbaseSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    CredentialReference, CredentialReferenceArgs

    ReferenceName string
    Reference credential name.
    Type string | Pulumi.AzureNative.DataFactory.CredentialReferenceType
    Credential reference type.
    ReferenceName string
    Reference credential name.
    Type string | CredentialReferenceType
    Credential reference type.
    referenceName String
    Reference credential name.
    type String | CredentialReferenceType
    Credential reference type.
    referenceName string
    Reference credential name.
    type string | CredentialReferenceType
    Credential reference type.
    reference_name str
    Reference credential name.
    type str | CredentialReferenceType
    Credential reference type.
    referenceName String
    Reference credential name.
    type String | "CredentialReference"
    Credential reference type.

    CredentialReferenceResponse, CredentialReferenceResponseArgs

    ReferenceName string
    Reference credential name.
    Type string
    Credential reference type.
    ReferenceName string
    Reference credential name.
    Type string
    Credential reference type.
    referenceName String
    Reference credential name.
    type String
    Credential reference type.
    referenceName string
    Reference credential name.
    type string
    Credential reference type.
    reference_name str
    Reference credential name.
    type str
    Credential reference type.
    referenceName String
    Reference credential name.
    type String
    Credential reference type.

    CredentialReferenceType, CredentialReferenceTypeArgs

    CredentialReference
    CredentialReference
    CredentialReferenceTypeCredentialReference
    CredentialReference
    CredentialReference
    CredentialReference
    CredentialReference
    CredentialReference
    CREDENTIAL_REFERENCE
    CredentialReference
    "CredentialReference"
    CredentialReference

    CustomActivity, CustomActivityArgs

    Command object
    Command for custom activity Type: string (or Expression with resultType string).
    Name string
    Activity name.
    AutoUserSpecification object
    Elevation level and scope for the user, default is nonadmin task. Type: string (or Expression with resultType double).
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependency>
    Activity depends on condition.
    Description string
    Activity description.
    ExtendedProperties Dictionary<string, object>
    User defined property bag. There is no restriction on the keys or values that can be used. The user specified custom activity has the full responsibility to consume and interpret the content defined.
    FolderPath object
    Folder path for resource files Type: string (or Expression with resultType string).
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    Linked service reference.
    OnInactiveMarkAs string | Pulumi.AzureNative.DataFactory.ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicy
    Activity policy.
    ReferenceObjects Pulumi.AzureNative.DataFactory.Inputs.CustomActivityReferenceObject
    Reference objects
    ResourceLinkedService Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    Resource linked service reference.
    RetentionTimeInDays object
    The retention time for the files submitted for custom activity. Type: double (or Expression with resultType double).
    State string | Pulumi.AzureNative.DataFactory.ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserProperty>
    Activity user properties.
    Command interface{}
    Command for custom activity Type: string (or Expression with resultType string).
    Name string
    Activity name.
    AutoUserSpecification interface{}
    Elevation level and scope for the user, default is nonadmin task. Type: string (or Expression with resultType double).
    DependsOn []ActivityDependency
    Activity depends on condition.
    Description string
    Activity description.
    ExtendedProperties map[string]interface{}
    User defined property bag. There is no restriction on the keys or values that can be used. The user specified custom activity has the full responsibility to consume and interpret the content defined.
    FolderPath interface{}
    Folder path for resource files Type: string (or Expression with resultType string).
    LinkedServiceName LinkedServiceReference
    Linked service reference.
    OnInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy ActivityPolicy
    Activity policy.
    ReferenceObjects CustomActivityReferenceObject
    Reference objects
    ResourceLinkedService LinkedServiceReference
    Resource linked service reference.
    RetentionTimeInDays interface{}
    The retention time for the files submitted for custom activity. Type: double (or Expression with resultType double).
    State string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserProperty
    Activity user properties.
    command Object
    Command for custom activity Type: string (or Expression with resultType string).
    name String
    Activity name.
    autoUserSpecification Object
    Elevation level and scope for the user, default is nonadmin task. Type: string (or Expression with resultType double).
    dependsOn List<ActivityDependency>
    Activity depends on condition.
    description String
    Activity description.
    extendedProperties Map<String,Object>
    User defined property bag. There is no restriction on the keys or values that can be used. The user specified custom activity has the full responsibility to consume and interpret the content defined.
    folderPath Object
    Folder path for resource files Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReference
    Linked service reference.
    onInactiveMarkAs String | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    referenceObjects CustomActivityReferenceObject
    Reference objects
    resourceLinkedService LinkedServiceReference
    Resource linked service reference.
    retentionTimeInDays Object
    The retention time for the files submitted for custom activity. Type: double (or Expression with resultType double).
    state String | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserProperty>
    Activity user properties.
    command any
    Command for custom activity Type: string (or Expression with resultType string).
    name string
    Activity name.
    autoUserSpecification any
    Elevation level and scope for the user, default is nonadmin task. Type: string (or Expression with resultType double).
    dependsOn ActivityDependency[]
    Activity depends on condition.
    description string
    Activity description.
    extendedProperties {[key: string]: any}
    User defined property bag. There is no restriction on the keys or values that can be used. The user specified custom activity has the full responsibility to consume and interpret the content defined.
    folderPath any
    Folder path for resource files Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReference
    Linked service reference.
    onInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    referenceObjects CustomActivityReferenceObject
    Reference objects
    resourceLinkedService LinkedServiceReference
    Resource linked service reference.
    retentionTimeInDays any
    The retention time for the files submitted for custom activity. Type: double (or Expression with resultType double).
    state string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserProperty[]
    Activity user properties.
    command Any
    Command for custom activity Type: string (or Expression with resultType string).
    name str
    Activity name.
    auto_user_specification Any
    Elevation level and scope for the user, default is nonadmin task. Type: string (or Expression with resultType double).
    depends_on Sequence[ActivityDependency]
    Activity depends on condition.
    description str
    Activity description.
    extended_properties Mapping[str, Any]
    User defined property bag. There is no restriction on the keys or values that can be used. The user specified custom activity has the full responsibility to consume and interpret the content defined.
    folder_path Any
    Folder path for resource files Type: string (or Expression with resultType string).
    linked_service_name LinkedServiceReference
    Linked service reference.
    on_inactive_mark_as str | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    reference_objects CustomActivityReferenceObject
    Reference objects
    resource_linked_service LinkedServiceReference
    Resource linked service reference.
    retention_time_in_days Any
    The retention time for the files submitted for custom activity. Type: double (or Expression with resultType double).
    state str | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserProperty]
    Activity user properties.
    command Any
    Command for custom activity Type: string (or Expression with resultType string).
    name String
    Activity name.
    autoUserSpecification Any
    Elevation level and scope for the user, default is nonadmin task. Type: string (or Expression with resultType double).
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    extendedProperties Map<Any>
    User defined property bag. There is no restriction on the keys or values that can be used. The user specified custom activity has the full responsibility to consume and interpret the content defined.
    folderPath Any
    Folder path for resource files Type: string (or Expression with resultType string).
    linkedServiceName Property Map
    Linked service reference.
    onInactiveMarkAs String | "Succeeded" | "Failed" | "Skipped"
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy Property Map
    Activity policy.
    referenceObjects Property Map
    Reference objects
    resourceLinkedService Property Map
    Resource linked service reference.
    retentionTimeInDays Any
    The retention time for the files submitted for custom activity. Type: double (or Expression with resultType double).
    state String | "Active" | "Inactive"
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.

    CustomActivityReferenceObject, CustomActivityReferenceObjectArgs

    Datasets []DatasetReference
    Dataset references.
    LinkedServices []LinkedServiceReference
    Linked service references.
    datasets DatasetReference[]
    Dataset references.
    linkedServices LinkedServiceReference[]
    Linked service references.
    datasets List<Property Map>
    Dataset references.
    linkedServices List<Property Map>
    Linked service references.

    CustomActivityReferenceObjectResponse, CustomActivityReferenceObjectResponseArgs

    datasets List<Property Map>
    Dataset references.
    linkedServices List<Property Map>
    Linked service references.

    CustomActivityResponse, CustomActivityResponseArgs

    Command object
    Command for custom activity Type: string (or Expression with resultType string).
    Name string
    Activity name.
    AutoUserSpecification object
    Elevation level and scope for the user, default is nonadmin task. Type: string (or Expression with resultType double).
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependencyResponse>
    Activity depends on condition.
    Description string
    Activity description.
    ExtendedProperties Dictionary<string, object>
    User defined property bag. There is no restriction on the keys or values that can be used. The user specified custom activity has the full responsibility to consume and interpret the content defined.
    FolderPath object
    Folder path for resource files Type: string (or Expression with resultType string).
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    Linked service reference.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicyResponse
    Activity policy.
    ReferenceObjects Pulumi.AzureNative.DataFactory.Inputs.CustomActivityReferenceObjectResponse
    Reference objects
    ResourceLinkedService Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    Resource linked service reference.
    RetentionTimeInDays object
    The retention time for the files submitted for custom activity. Type: double (or Expression with resultType double).
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserPropertyResponse>
    Activity user properties.
    Command interface{}
    Command for custom activity Type: string (or Expression with resultType string).
    Name string
    Activity name.
    AutoUserSpecification interface{}
    Elevation level and scope for the user, default is nonadmin task. Type: string (or Expression with resultType double).
    DependsOn []ActivityDependencyResponse
    Activity depends on condition.
    Description string
    Activity description.
    ExtendedProperties map[string]interface{}
    User defined property bag. There is no restriction on the keys or values that can be used. The user specified custom activity has the full responsibility to consume and interpret the content defined.
    FolderPath interface{}
    Folder path for resource files Type: string (or Expression with resultType string).
    LinkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy ActivityPolicyResponse
    Activity policy.
    ReferenceObjects CustomActivityReferenceObjectResponse
    Reference objects
    ResourceLinkedService LinkedServiceReferenceResponse
    Resource linked service reference.
    RetentionTimeInDays interface{}
    The retention time for the files submitted for custom activity. Type: double (or Expression with resultType double).
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserPropertyResponse
    Activity user properties.
    command Object
    Command for custom activity Type: string (or Expression with resultType string).
    name String
    Activity name.
    autoUserSpecification Object
    Elevation level and scope for the user, default is nonadmin task. Type: string (or Expression with resultType double).
    dependsOn List<ActivityDependencyResponse>
    Activity depends on condition.
    description String
    Activity description.
    extendedProperties Map<String,Object>
    User defined property bag. There is no restriction on the keys or values that can be used. The user specified custom activity has the full responsibility to consume and interpret the content defined.
    folderPath Object
    Folder path for resource files Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    referenceObjects CustomActivityReferenceObjectResponse
    Reference objects
    resourceLinkedService LinkedServiceReferenceResponse
    Resource linked service reference.
    retentionTimeInDays Object
    The retention time for the files submitted for custom activity. Type: double (or Expression with resultType double).
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserPropertyResponse>
    Activity user properties.
    command any
    Command for custom activity Type: string (or Expression with resultType string).
    name string
    Activity name.
    autoUserSpecification any
    Elevation level and scope for the user, default is nonadmin task. Type: string (or Expression with resultType double).
    dependsOn ActivityDependencyResponse[]
    Activity depends on condition.
    description string
    Activity description.
    extendedProperties {[key: string]: any}
    User defined property bag. There is no restriction on the keys or values that can be used. The user specified custom activity has the full responsibility to consume and interpret the content defined.
    folderPath any
    Folder path for resource files Type: string (or Expression with resultType string).
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    onInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    referenceObjects CustomActivityReferenceObjectResponse
    Reference objects
    resourceLinkedService LinkedServiceReferenceResponse
    Resource linked service reference.
    retentionTimeInDays any
    The retention time for the files submitted for custom activity. Type: double (or Expression with resultType double).
    state string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserPropertyResponse[]
    Activity user properties.
    command Any
    Command for custom activity Type: string (or Expression with resultType string).
    name str
    Activity name.
    auto_user_specification Any
    Elevation level and scope for the user, default is nonadmin task. Type: string (or Expression with resultType double).
    depends_on Sequence[ActivityDependencyResponse]
    Activity depends on condition.
    description str
    Activity description.
    extended_properties Mapping[str, Any]
    User defined property bag. There is no restriction on the keys or values that can be used. The user specified custom activity has the full responsibility to consume and interpret the content defined.
    folder_path Any
    Folder path for resource files Type: string (or Expression with resultType string).
    linked_service_name LinkedServiceReferenceResponse
    Linked service reference.
    on_inactive_mark_as str
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    reference_objects CustomActivityReferenceObjectResponse
    Reference objects
    resource_linked_service LinkedServiceReferenceResponse
    Resource linked service reference.
    retention_time_in_days Any
    The retention time for the files submitted for custom activity. Type: double (or Expression with resultType double).
    state str
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserPropertyResponse]
    Activity user properties.
    command Any
    Command for custom activity Type: string (or Expression with resultType string).
    name String
    Activity name.
    autoUserSpecification Any
    Elevation level and scope for the user, default is nonadmin task. Type: string (or Expression with resultType double).
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    extendedProperties Map<Any>
    User defined property bag. There is no restriction on the keys or values that can be used. The user specified custom activity has the full responsibility to consume and interpret the content defined.
    folderPath Any
    Folder path for resource files Type: string (or Expression with resultType string).
    linkedServiceName Property Map
    Linked service reference.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy Property Map
    Activity policy.
    referenceObjects Property Map
    Reference objects
    resourceLinkedService Property Map
    Resource linked service reference.
    retentionTimeInDays Any
    The retention time for the files submitted for custom activity. Type: double (or Expression with resultType double).
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.

    DWCopyCommandDefaultValue, DWCopyCommandDefaultValueArgs

    ColumnName object
    Column name. Type: object (or Expression with resultType string).
    DefaultValue object
    The default value of the column. Type: object (or Expression with resultType string).
    ColumnName interface{}
    Column name. Type: object (or Expression with resultType string).
    DefaultValue interface{}
    The default value of the column. Type: object (or Expression with resultType string).
    columnName Object
    Column name. Type: object (or Expression with resultType string).
    defaultValue Object
    The default value of the column. Type: object (or Expression with resultType string).
    columnName any
    Column name. Type: object (or Expression with resultType string).
    defaultValue any
    The default value of the column. Type: object (or Expression with resultType string).
    column_name Any
    Column name. Type: object (or Expression with resultType string).
    default_value Any
    The default value of the column. Type: object (or Expression with resultType string).
    columnName Any
    Column name. Type: object (or Expression with resultType string).
    defaultValue Any
    The default value of the column. Type: object (or Expression with resultType string).

    DWCopyCommandDefaultValueResponse, DWCopyCommandDefaultValueResponseArgs

    ColumnName object
    Column name. Type: object (or Expression with resultType string).
    DefaultValue object
    The default value of the column. Type: object (or Expression with resultType string).
    ColumnName interface{}
    Column name. Type: object (or Expression with resultType string).
    DefaultValue interface{}
    The default value of the column. Type: object (or Expression with resultType string).
    columnName Object
    Column name. Type: object (or Expression with resultType string).
    defaultValue Object
    The default value of the column. Type: object (or Expression with resultType string).
    columnName any
    Column name. Type: object (or Expression with resultType string).
    defaultValue any
    The default value of the column. Type: object (or Expression with resultType string).
    column_name Any
    Column name. Type: object (or Expression with resultType string).
    default_value Any
    The default value of the column. Type: object (or Expression with resultType string).
    columnName Any
    Column name. Type: object (or Expression with resultType string).
    defaultValue Any
    The default value of the column. Type: object (or Expression with resultType string).

    DWCopyCommandSettings, DWCopyCommandSettingsArgs

    AdditionalOptions Dictionary<string, string>
    Additional options directly passed to SQL DW in Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalOptions": { "MAXERRORS": "1000", "DATEFORMAT": "'ymd'" }
    DefaultValues List<Pulumi.AzureNative.DataFactory.Inputs.DWCopyCommandDefaultValue>
    Specifies the default values for each target column in SQL DW. The default values in the property overwrite the DEFAULT constraint set in the DB, and identity column cannot have a default value. Type: array of objects (or Expression with resultType array of objects).
    AdditionalOptions map[string]string
    Additional options directly passed to SQL DW in Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalOptions": { "MAXERRORS": "1000", "DATEFORMAT": "'ymd'" }
    DefaultValues []DWCopyCommandDefaultValue
    Specifies the default values for each target column in SQL DW. The default values in the property overwrite the DEFAULT constraint set in the DB, and identity column cannot have a default value. Type: array of objects (or Expression with resultType array of objects).
    additionalOptions Map<String,String>
    Additional options directly passed to SQL DW in Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalOptions": { "MAXERRORS": "1000", "DATEFORMAT": "'ymd'" }
    defaultValues List<DWCopyCommandDefaultValue>
    Specifies the default values for each target column in SQL DW. The default values in the property overwrite the DEFAULT constraint set in the DB, and identity column cannot have a default value. Type: array of objects (or Expression with resultType array of objects).
    additionalOptions {[key: string]: string}
    Additional options directly passed to SQL DW in Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalOptions": { "MAXERRORS": "1000", "DATEFORMAT": "'ymd'" }
    defaultValues DWCopyCommandDefaultValue[]
    Specifies the default values for each target column in SQL DW. The default values in the property overwrite the DEFAULT constraint set in the DB, and identity column cannot have a default value. Type: array of objects (or Expression with resultType array of objects).
    additional_options Mapping[str, str]
    Additional options directly passed to SQL DW in Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalOptions": { "MAXERRORS": "1000", "DATEFORMAT": "'ymd'" }
    default_values Sequence[DWCopyCommandDefaultValue]
    Specifies the default values for each target column in SQL DW. The default values in the property overwrite the DEFAULT constraint set in the DB, and identity column cannot have a default value. Type: array of objects (or Expression with resultType array of objects).
    additionalOptions Map<String>
    Additional options directly passed to SQL DW in Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalOptions": { "MAXERRORS": "1000", "DATEFORMAT": "'ymd'" }
    defaultValues List<Property Map>
    Specifies the default values for each target column in SQL DW. The default values in the property overwrite the DEFAULT constraint set in the DB, and identity column cannot have a default value. Type: array of objects (or Expression with resultType array of objects).

    DWCopyCommandSettingsResponse, DWCopyCommandSettingsResponseArgs

    AdditionalOptions Dictionary<string, string>
    Additional options directly passed to SQL DW in Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalOptions": { "MAXERRORS": "1000", "DATEFORMAT": "'ymd'" }
    DefaultValues List<Pulumi.AzureNative.DataFactory.Inputs.DWCopyCommandDefaultValueResponse>
    Specifies the default values for each target column in SQL DW. The default values in the property overwrite the DEFAULT constraint set in the DB, and identity column cannot have a default value. Type: array of objects (or Expression with resultType array of objects).
    AdditionalOptions map[string]string
    Additional options directly passed to SQL DW in Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalOptions": { "MAXERRORS": "1000", "DATEFORMAT": "'ymd'" }
    DefaultValues []DWCopyCommandDefaultValueResponse
    Specifies the default values for each target column in SQL DW. The default values in the property overwrite the DEFAULT constraint set in the DB, and identity column cannot have a default value. Type: array of objects (or Expression with resultType array of objects).
    additionalOptions Map<String,String>
    Additional options directly passed to SQL DW in Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalOptions": { "MAXERRORS": "1000", "DATEFORMAT": "'ymd'" }
    defaultValues List<DWCopyCommandDefaultValueResponse>
    Specifies the default values for each target column in SQL DW. The default values in the property overwrite the DEFAULT constraint set in the DB, and identity column cannot have a default value. Type: array of objects (or Expression with resultType array of objects).
    additionalOptions {[key: string]: string}
    Additional options directly passed to SQL DW in Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalOptions": { "MAXERRORS": "1000", "DATEFORMAT": "'ymd'" }
    defaultValues DWCopyCommandDefaultValueResponse[]
    Specifies the default values for each target column in SQL DW. The default values in the property overwrite the DEFAULT constraint set in the DB, and identity column cannot have a default value. Type: array of objects (or Expression with resultType array of objects).
    additional_options Mapping[str, str]
    Additional options directly passed to SQL DW in Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalOptions": { "MAXERRORS": "1000", "DATEFORMAT": "'ymd'" }
    default_values Sequence[DWCopyCommandDefaultValueResponse]
    Specifies the default values for each target column in SQL DW. The default values in the property overwrite the DEFAULT constraint set in the DB, and identity column cannot have a default value. Type: array of objects (or Expression with resultType array of objects).
    additionalOptions Map<String>
    Additional options directly passed to SQL DW in Copy Command. Type: key value pairs (value should be string type) (or Expression with resultType object). Example: "additionalOptions": { "MAXERRORS": "1000", "DATEFORMAT": "'ymd'" }
    defaultValues List<Property Map>
    Specifies the default values for each target column in SQL DW. The default values in the property overwrite the DEFAULT constraint set in the DB, and identity column cannot have a default value. Type: array of objects (or Expression with resultType array of objects).

    DataFlowReference, DataFlowReferenceArgs

    ReferenceName string
    Reference data flow name.
    Type string | Pulumi.AzureNative.DataFactory.DataFlowReferenceType
    Data flow reference type.
    DatasetParameters object
    Reference data flow parameters from dataset.
    Parameters Dictionary<string, object>
    Data flow parameters
    ReferenceName string
    Reference data flow name.
    Type string | DataFlowReferenceType
    Data flow reference type.
    DatasetParameters interface{}
    Reference data flow parameters from dataset.
    Parameters map[string]interface{}
    Data flow parameters
    referenceName String
    Reference data flow name.
    type String | DataFlowReferenceType
    Data flow reference type.
    datasetParameters Object
    Reference data flow parameters from dataset.
    parameters Map<String,Object>
    Data flow parameters
    referenceName string
    Reference data flow name.
    type string | DataFlowReferenceType
    Data flow reference type.
    datasetParameters any
    Reference data flow parameters from dataset.
    parameters {[key: string]: any}
    Data flow parameters
    reference_name str
    Reference data flow name.
    type str | DataFlowReferenceType
    Data flow reference type.
    dataset_parameters Any
    Reference data flow parameters from dataset.
    parameters Mapping[str, Any]
    Data flow parameters
    referenceName String
    Reference data flow name.
    type String | "DataFlowReference"
    Data flow reference type.
    datasetParameters Any
    Reference data flow parameters from dataset.
    parameters Map<Any>
    Data flow parameters

    DataFlowReferenceResponse, DataFlowReferenceResponseArgs

    ReferenceName string
    Reference data flow name.
    Type string
    Data flow reference type.
    DatasetParameters object
    Reference data flow parameters from dataset.
    Parameters Dictionary<string, object>
    Data flow parameters
    ReferenceName string
    Reference data flow name.
    Type string
    Data flow reference type.
    DatasetParameters interface{}
    Reference data flow parameters from dataset.
    Parameters map[string]interface{}
    Data flow parameters
    referenceName String
    Reference data flow name.
    type String
    Data flow reference type.
    datasetParameters Object
    Reference data flow parameters from dataset.
    parameters Map<String,Object>
    Data flow parameters
    referenceName string
    Reference data flow name.
    type string
    Data flow reference type.
    datasetParameters any
    Reference data flow parameters from dataset.
    parameters {[key: string]: any}
    Data flow parameters
    reference_name str
    Reference data flow name.
    type str
    Data flow reference type.
    dataset_parameters Any
    Reference data flow parameters from dataset.
    parameters Mapping[str, Any]
    Data flow parameters
    referenceName String
    Reference data flow name.
    type String
    Data flow reference type.
    datasetParameters Any
    Reference data flow parameters from dataset.
    parameters Map<Any>
    Data flow parameters

    DataFlowReferenceType, DataFlowReferenceTypeArgs

    DataFlowReference
    DataFlowReference
    DataFlowReferenceTypeDataFlowReference
    DataFlowReference
    DataFlowReference
    DataFlowReference
    DataFlowReference
    DataFlowReference
    DATA_FLOW_REFERENCE
    DataFlowReference
    "DataFlowReference"
    DataFlowReference

    DataFlowStagingInfo, DataFlowStagingInfoArgs

    FolderPath object
    Folder path for staging blob. Type: string (or Expression with resultType string)
    LinkedService Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    Staging linked service reference.
    FolderPath interface{}
    Folder path for staging blob. Type: string (or Expression with resultType string)
    LinkedService LinkedServiceReference
    Staging linked service reference.
    folderPath Object
    Folder path for staging blob. Type: string (or Expression with resultType string)
    linkedService LinkedServiceReference
    Staging linked service reference.
    folderPath any
    Folder path for staging blob. Type: string (or Expression with resultType string)
    linkedService LinkedServiceReference
    Staging linked service reference.
    folder_path Any
    Folder path for staging blob. Type: string (or Expression with resultType string)
    linked_service LinkedServiceReference
    Staging linked service reference.
    folderPath Any
    Folder path for staging blob. Type: string (or Expression with resultType string)
    linkedService Property Map
    Staging linked service reference.

    DataFlowStagingInfoResponse, DataFlowStagingInfoResponseArgs

    FolderPath object
    Folder path for staging blob. Type: string (or Expression with resultType string)
    LinkedService Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    Staging linked service reference.
    FolderPath interface{}
    Folder path for staging blob. Type: string (or Expression with resultType string)
    LinkedService LinkedServiceReferenceResponse
    Staging linked service reference.
    folderPath Object
    Folder path for staging blob. Type: string (or Expression with resultType string)
    linkedService LinkedServiceReferenceResponse
    Staging linked service reference.
    folderPath any
    Folder path for staging blob. Type: string (or Expression with resultType string)
    linkedService LinkedServiceReferenceResponse
    Staging linked service reference.
    folder_path Any
    Folder path for staging blob. Type: string (or Expression with resultType string)
    linked_service LinkedServiceReferenceResponse
    Staging linked service reference.
    folderPath Any
    Folder path for staging blob. Type: string (or Expression with resultType string)
    linkedService Property Map
    Staging linked service reference.

    DataLakeAnalyticsUSQLActivity, DataLakeAnalyticsUSQLActivityArgs

    Name string
    Activity name.
    ScriptLinkedService Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    Script linked service reference.
    ScriptPath object
    Case-sensitive path to folder that contains the U-SQL script. Type: string (or Expression with resultType string).
    CompilationMode object
    Compilation mode of U-SQL. Must be one of these values : Semantic, Full and SingleBox. Type: string (or Expression with resultType string).
    DegreeOfParallelism object
    The maximum number of nodes simultaneously used to run the job. Default value is 1. Type: integer (or Expression with resultType integer), minimum: 1.
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependency>
    Activity depends on condition.
    Description string
    Activity description.
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    Linked service reference.
    OnInactiveMarkAs string | Pulumi.AzureNative.DataFactory.ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Parameters Dictionary<string, object>
    Parameters for U-SQL job request.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicy
    Activity policy.
    Priority object
    Determines which jobs out of all that are queued should be selected to run first. The lower the number, the higher the priority. Default value is 1000. Type: integer (or Expression with resultType integer), minimum: 1.
    RuntimeVersion object
    Runtime version of the U-SQL engine to use. Type: string (or Expression with resultType string).
    State string | Pulumi.AzureNative.DataFactory.ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserProperty>
    Activity user properties.
    Name string
    Activity name.
    ScriptLinkedService LinkedServiceReference
    Script linked service reference.
    ScriptPath interface{}
    Case-sensitive path to folder that contains the U-SQL script. Type: string (or Expression with resultType string).
    CompilationMode interface{}
    Compilation mode of U-SQL. Must be one of these values : Semantic, Full and SingleBox. Type: string (or Expression with resultType string).
    DegreeOfParallelism interface{}
    The maximum number of nodes simultaneously used to run the job. Default value is 1. Type: integer (or Expression with resultType integer), minimum: 1.
    DependsOn []ActivityDependency
    Activity depends on condition.
    Description string
    Activity description.
    LinkedServiceName LinkedServiceReference
    Linked service reference.
    OnInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Parameters map[string]interface{}
    Parameters for U-SQL job request.
    Policy ActivityPolicy
    Activity policy.
    Priority interface{}
    Determines which jobs out of all that are queued should be selected to run first. The lower the number, the higher the priority. Default value is 1000. Type: integer (or Expression with resultType integer), minimum: 1.
    RuntimeVersion interface{}
    Runtime version of the U-SQL engine to use. Type: string (or Expression with resultType string).
    State string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserProperty
    Activity user properties.
    name String
    Activity name.
    scriptLinkedService LinkedServiceReference
    Script linked service reference.
    scriptPath Object
    Case-sensitive path to folder that contains the U-SQL script. Type: string (or Expression with resultType string).
    compilationMode Object
    Compilation mode of U-SQL. Must be one of these values : Semantic, Full and SingleBox. Type: string (or Expression with resultType string).
    degreeOfParallelism Object
    The maximum number of nodes simultaneously used to run the job. Default value is 1. Type: integer (or Expression with resultType integer), minimum: 1.
    dependsOn List<ActivityDependency>
    Activity depends on condition.
    description String
    Activity description.
    linkedServiceName LinkedServiceReference
    Linked service reference.
    onInactiveMarkAs String | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters Map<String,Object>
    Parameters for U-SQL job request.
    policy ActivityPolicy
    Activity policy.
    priority Object
    Determines which jobs out of all that are queued should be selected to run first. The lower the number, the higher the priority. Default value is 1000. Type: integer (or Expression with resultType integer), minimum: 1.
    runtimeVersion Object
    Runtime version of the U-SQL engine to use. Type: string (or Expression with resultType string).
    state String | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserProperty>
    Activity user properties.
    name string
    Activity name.
    scriptLinkedService LinkedServiceReference
    Script linked service reference.
    scriptPath any
    Case-sensitive path to folder that contains the U-SQL script. Type: string (or Expression with resultType string).
    compilationMode any
    Compilation mode of U-SQL. Must be one of these values : Semantic, Full and SingleBox. Type: string (or Expression with resultType string).
    degreeOfParallelism any
    The maximum number of nodes simultaneously used to run the job. Default value is 1. Type: integer (or Expression with resultType integer), minimum: 1.
    dependsOn ActivityDependency[]
    Activity depends on condition.
    description string
    Activity description.
    linkedServiceName LinkedServiceReference
    Linked service reference.
    onInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters {[key: string]: any}
    Parameters for U-SQL job request.
    policy ActivityPolicy
    Activity policy.
    priority any
    Determines which jobs out of all that are queued should be selected to run first. The lower the number, the higher the priority. Default value is 1000. Type: integer (or Expression with resultType integer), minimum: 1.
    runtimeVersion any
    Runtime version of the U-SQL engine to use. Type: string (or Expression with resultType string).
    state string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserProperty[]
    Activity user properties.
    name str
    Activity name.
    script_linked_service LinkedServiceReference
    Script linked service reference.
    script_path Any
    Case-sensitive path to folder that contains the U-SQL script. Type: string (or Expression with resultType string).
    compilation_mode Any
    Compilation mode of U-SQL. Must be one of these values : Semantic, Full and SingleBox. Type: string (or Expression with resultType string).
    degree_of_parallelism Any
    The maximum number of nodes simultaneously used to run the job. Default value is 1. Type: integer (or Expression with resultType integer), minimum: 1.
    depends_on Sequence[ActivityDependency]
    Activity depends on condition.
    description str
    Activity description.
    linked_service_name LinkedServiceReference
    Linked service reference.
    on_inactive_mark_as str | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters Mapping[str, Any]
    Parameters for U-SQL job request.
    policy ActivityPolicy
    Activity policy.
    priority Any
    Determines which jobs out of all that are queued should be selected to run first. The lower the number, the higher the priority. Default value is 1000. Type: integer (or Expression with resultType integer), minimum: 1.
    runtime_version Any
    Runtime version of the U-SQL engine to use. Type: string (or Expression with resultType string).
    state str | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserProperty]
    Activity user properties.
    name String
    Activity name.
    scriptLinkedService Property Map
    Script linked service reference.
    scriptPath Any
    Case-sensitive path to folder that contains the U-SQL script. Type: string (or Expression with resultType string).
    compilationMode Any
    Compilation mode of U-SQL. Must be one of these values : Semantic, Full and SingleBox. Type: string (or Expression with resultType string).
    degreeOfParallelism Any
    The maximum number of nodes simultaneously used to run the job. Default value is 1. Type: integer (or Expression with resultType integer), minimum: 1.
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    linkedServiceName Property Map
    Linked service reference.
    onInactiveMarkAs String | "Succeeded" | "Failed" | "Skipped"
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters Map<Any>
    Parameters for U-SQL job request.
    policy Property Map
    Activity policy.
    priority Any
    Determines which jobs out of all that are queued should be selected to run first. The lower the number, the higher the priority. Default value is 1000. Type: integer (or Expression with resultType integer), minimum: 1.
    runtimeVersion Any
    Runtime version of the U-SQL engine to use. Type: string (or Expression with resultType string).
    state String | "Active" | "Inactive"
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.

    DataLakeAnalyticsUSQLActivityResponse, DataLakeAnalyticsUSQLActivityResponseArgs

    Name string
    Activity name.
    ScriptLinkedService Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    Script linked service reference.
    ScriptPath object
    Case-sensitive path to folder that contains the U-SQL script. Type: string (or Expression with resultType string).
    CompilationMode object
    Compilation mode of U-SQL. Must be one of these values : Semantic, Full and SingleBox. Type: string (or Expression with resultType string).
    DegreeOfParallelism object
    The maximum number of nodes simultaneously used to run the job. Default value is 1. Type: integer (or Expression with resultType integer), minimum: 1.
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependencyResponse>
    Activity depends on condition.
    Description string
    Activity description.
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    Linked service reference.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Parameters Dictionary<string, object>
    Parameters for U-SQL job request.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicyResponse
    Activity policy.
    Priority object
    Determines which jobs out of all that are queued should be selected to run first. The lower the number, the higher the priority. Default value is 1000. Type: integer (or Expression with resultType integer), minimum: 1.
    RuntimeVersion object
    Runtime version of the U-SQL engine to use. Type: string (or Expression with resultType string).
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserPropertyResponse>
    Activity user properties.
    Name string
    Activity name.
    ScriptLinkedService LinkedServiceReferenceResponse
    Script linked service reference.
    ScriptPath interface{}
    Case-sensitive path to folder that contains the U-SQL script. Type: string (or Expression with resultType string).
    CompilationMode interface{}
    Compilation mode of U-SQL. Must be one of these values : Semantic, Full and SingleBox. Type: string (or Expression with resultType string).
    DegreeOfParallelism interface{}
    The maximum number of nodes simultaneously used to run the job. Default value is 1. Type: integer (or Expression with resultType integer), minimum: 1.
    DependsOn []ActivityDependencyResponse
    Activity depends on condition.
    Description string
    Activity description.
    LinkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Parameters map[string]interface{}
    Parameters for U-SQL job request.
    Policy ActivityPolicyResponse
    Activity policy.
    Priority interface{}
    Determines which jobs out of all that are queued should be selected to run first. The lower the number, the higher the priority. Default value is 1000. Type: integer (or Expression with resultType integer), minimum: 1.
    RuntimeVersion interface{}
    Runtime version of the U-SQL engine to use. Type: string (or Expression with resultType string).
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserPropertyResponse
    Activity user properties.
    name String
    Activity name.
    scriptLinkedService LinkedServiceReferenceResponse
    Script linked service reference.
    scriptPath Object
    Case-sensitive path to folder that contains the U-SQL script. Type: string (or Expression with resultType string).
    compilationMode Object
    Compilation mode of U-SQL. Must be one of these values : Semantic, Full and SingleBox. Type: string (or Expression with resultType string).
    degreeOfParallelism Object
    The maximum number of nodes simultaneously used to run the job. Default value is 1. Type: integer (or Expression with resultType integer), minimum: 1.
    dependsOn List<ActivityDependencyResponse>
    Activity depends on condition.
    description String
    Activity description.
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters Map<String,Object>
    Parameters for U-SQL job request.
    policy ActivityPolicyResponse
    Activity policy.
    priority Object
    Determines which jobs out of all that are queued should be selected to run first. The lower the number, the higher the priority. Default value is 1000. Type: integer (or Expression with resultType integer), minimum: 1.
    runtimeVersion Object
    Runtime version of the U-SQL engine to use. Type: string (or Expression with resultType string).
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserPropertyResponse>
    Activity user properties.
    name string
    Activity name.
    scriptLinkedService LinkedServiceReferenceResponse
    Script linked service reference.
    scriptPath any
    Case-sensitive path to folder that contains the U-SQL script. Type: string (or Expression with resultType string).
    compilationMode any
    Compilation mode of U-SQL. Must be one of these values : Semantic, Full and SingleBox. Type: string (or Expression with resultType string).
    degreeOfParallelism any
    The maximum number of nodes simultaneously used to run the job. Default value is 1. Type: integer (or Expression with resultType integer), minimum: 1.
    dependsOn ActivityDependencyResponse[]
    Activity depends on condition.
    description string
    Activity description.
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    onInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters {[key: string]: any}
    Parameters for U-SQL job request.
    policy ActivityPolicyResponse
    Activity policy.
    priority any
    Determines which jobs out of all that are queued should be selected to run first. The lower the number, the higher the priority. Default value is 1000. Type: integer (or Expression with resultType integer), minimum: 1.
    runtimeVersion any
    Runtime version of the U-SQL engine to use. Type: string (or Expression with resultType string).
    state string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserPropertyResponse[]
    Activity user properties.
    name str
    Activity name.
    script_linked_service LinkedServiceReferenceResponse
    Script linked service reference.
    script_path Any
    Case-sensitive path to folder that contains the U-SQL script. Type: string (or Expression with resultType string).
    compilation_mode Any
    Compilation mode of U-SQL. Must be one of these values : Semantic, Full and SingleBox. Type: string (or Expression with resultType string).
    degree_of_parallelism Any
    The maximum number of nodes simultaneously used to run the job. Default value is 1. Type: integer (or Expression with resultType integer), minimum: 1.
    depends_on Sequence[ActivityDependencyResponse]
    Activity depends on condition.
    description str
    Activity description.
    linked_service_name LinkedServiceReferenceResponse
    Linked service reference.
    on_inactive_mark_as str
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters Mapping[str, Any]
    Parameters for U-SQL job request.
    policy ActivityPolicyResponse
    Activity policy.
    priority Any
    Determines which jobs out of all that are queued should be selected to run first. The lower the number, the higher the priority. Default value is 1000. Type: integer (or Expression with resultType integer), minimum: 1.
    runtime_version Any
    Runtime version of the U-SQL engine to use. Type: string (or Expression with resultType string).
    state str
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserPropertyResponse]
    Activity user properties.
    name String
    Activity name.
    scriptLinkedService Property Map
    Script linked service reference.
    scriptPath Any
    Case-sensitive path to folder that contains the U-SQL script. Type: string (or Expression with resultType string).
    compilationMode Any
    Compilation mode of U-SQL. Must be one of these values : Semantic, Full and SingleBox. Type: string (or Expression with resultType string).
    degreeOfParallelism Any
    The maximum number of nodes simultaneously used to run the job. Default value is 1. Type: integer (or Expression with resultType integer), minimum: 1.
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    linkedServiceName Property Map
    Linked service reference.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters Map<Any>
    Parameters for U-SQL job request.
    policy Property Map
    Activity policy.
    priority Any
    Determines which jobs out of all that are queued should be selected to run first. The lower the number, the higher the priority. Default value is 1000. Type: integer (or Expression with resultType integer), minimum: 1.
    runtimeVersion Any
    Runtime version of the U-SQL engine to use. Type: string (or Expression with resultType string).
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.

    DatabricksNotebookActivity, DatabricksNotebookActivityArgs

    Name string
    Activity name.
    NotebookPath object
    The absolute path of the notebook to be run in the Databricks Workspace. This path must begin with a slash. Type: string (or Expression with resultType string).
    BaseParameters Dictionary<string, object>
    Base parameters to be used for each run of this job.If the notebook takes a parameter that is not specified, the default value from the notebook will be used.
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependency>
    Activity depends on condition.
    Description string
    Activity description.
    Libraries List<ImmutableDictionary<string, object>>
    A list of libraries to be installed on the cluster that will execute the job.
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    Linked service reference.
    OnInactiveMarkAs string | Pulumi.AzureNative.DataFactory.ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicy
    Activity policy.
    State string | Pulumi.AzureNative.DataFactory.ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserProperty>
    Activity user properties.
    Name string
    Activity name.
    NotebookPath interface{}
    The absolute path of the notebook to be run in the Databricks Workspace. This path must begin with a slash. Type: string (or Expression with resultType string).
    BaseParameters map[string]interface{}
    Base parameters to be used for each run of this job.If the notebook takes a parameter that is not specified, the default value from the notebook will be used.
    DependsOn []ActivityDependency
    Activity depends on condition.
    Description string
    Activity description.
    Libraries []map[string]interface{}
    A list of libraries to be installed on the cluster that will execute the job.
    LinkedServiceName LinkedServiceReference
    Linked service reference.
    OnInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy ActivityPolicy
    Activity policy.
    State string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserProperty
    Activity user properties.
    name String
    Activity name.
    notebookPath Object
    The absolute path of the notebook to be run in the Databricks Workspace. This path must begin with a slash. Type: string (or Expression with resultType string).
    baseParameters Map<String,Object>
    Base parameters to be used for each run of this job.If the notebook takes a parameter that is not specified, the default value from the notebook will be used.
    dependsOn List<ActivityDependency>
    Activity depends on condition.
    description String
    Activity description.
    libraries List<Map<String,Object>>
    A list of libraries to be installed on the cluster that will execute the job.
    linkedServiceName LinkedServiceReference
    Linked service reference.
    onInactiveMarkAs String | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    state String | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserProperty>
    Activity user properties.
    name string
    Activity name.
    notebookPath any
    The absolute path of the notebook to be run in the Databricks Workspace. This path must begin with a slash. Type: string (or Expression with resultType string).
    baseParameters {[key: string]: any}
    Base parameters to be used for each run of this job.If the notebook takes a parameter that is not specified, the default value from the notebook will be used.
    dependsOn ActivityDependency[]
    Activity depends on condition.
    description string
    Activity description.
    libraries {[key: string]: any}[]
    A list of libraries to be installed on the cluster that will execute the job.
    linkedServiceName LinkedServiceReference
    Linked service reference.
    onInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    state string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserProperty[]
    Activity user properties.
    name str
    Activity name.
    notebook_path Any
    The absolute path of the notebook to be run in the Databricks Workspace. This path must begin with a slash. Type: string (or Expression with resultType string).
    base_parameters Mapping[str, Any]
    Base parameters to be used for each run of this job.If the notebook takes a parameter that is not specified, the default value from the notebook will be used.
    depends_on Sequence[ActivityDependency]
    Activity depends on condition.
    description str
    Activity description.
    libraries Sequence[Mapping[str, Any]]
    A list of libraries to be installed on the cluster that will execute the job.
    linked_service_name LinkedServiceReference
    Linked service reference.
    on_inactive_mark_as str | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    state str | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserProperty]
    Activity user properties.
    name String
    Activity name.
    notebookPath Any
    The absolute path of the notebook to be run in the Databricks Workspace. This path must begin with a slash. Type: string (or Expression with resultType string).
    baseParameters Map<Any>
    Base parameters to be used for each run of this job.If the notebook takes a parameter that is not specified, the default value from the notebook will be used.
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    libraries List<Map<Any>>
    A list of libraries to be installed on the cluster that will execute the job.
    linkedServiceName Property Map
    Linked service reference.
    onInactiveMarkAs String | "Succeeded" | "Failed" | "Skipped"
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy Property Map
    Activity policy.
    state String | "Active" | "Inactive"
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.

    DatabricksNotebookActivityResponse, DatabricksNotebookActivityResponseArgs

    Name string
    Activity name.
    NotebookPath object
    The absolute path of the notebook to be run in the Databricks Workspace. This path must begin with a slash. Type: string (or Expression with resultType string).
    BaseParameters Dictionary<string, object>
    Base parameters to be used for each run of this job.If the notebook takes a parameter that is not specified, the default value from the notebook will be used.
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependencyResponse>
    Activity depends on condition.
    Description string
    Activity description.
    Libraries List<ImmutableDictionary<string, object>>
    A list of libraries to be installed on the cluster that will execute the job.
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    Linked service reference.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicyResponse
    Activity policy.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserPropertyResponse>
    Activity user properties.
    Name string
    Activity name.
    NotebookPath interface{}
    The absolute path of the notebook to be run in the Databricks Workspace. This path must begin with a slash. Type: string (or Expression with resultType string).
    BaseParameters map[string]interface{}
    Base parameters to be used for each run of this job.If the notebook takes a parameter that is not specified, the default value from the notebook will be used.
    DependsOn []ActivityDependencyResponse
    Activity depends on condition.
    Description string
    Activity description.
    Libraries []map[string]interface{}
    A list of libraries to be installed on the cluster that will execute the job.
    LinkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy ActivityPolicyResponse
    Activity policy.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserPropertyResponse
    Activity user properties.
    name String
    Activity name.
    notebookPath Object
    The absolute path of the notebook to be run in the Databricks Workspace. This path must begin with a slash. Type: string (or Expression with resultType string).
    baseParameters Map<String,Object>
    Base parameters to be used for each run of this job.If the notebook takes a parameter that is not specified, the default value from the notebook will be used.
    dependsOn List<ActivityDependencyResponse>
    Activity depends on condition.
    description String
    Activity description.
    libraries List<Map<String,Object>>
    A list of libraries to be installed on the cluster that will execute the job.
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserPropertyResponse>
    Activity user properties.
    name string
    Activity name.
    notebookPath any
    The absolute path of the notebook to be run in the Databricks Workspace. This path must begin with a slash. Type: string (or Expression with resultType string).
    baseParameters {[key: string]: any}
    Base parameters to be used for each run of this job.If the notebook takes a parameter that is not specified, the default value from the notebook will be used.
    dependsOn ActivityDependencyResponse[]
    Activity depends on condition.
    description string
    Activity description.
    libraries {[key: string]: any}[]
    A list of libraries to be installed on the cluster that will execute the job.
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    onInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    state string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserPropertyResponse[]
    Activity user properties.
    name str
    Activity name.
    notebook_path Any
    The absolute path of the notebook to be run in the Databricks Workspace. This path must begin with a slash. Type: string (or Expression with resultType string).
    base_parameters Mapping[str, Any]
    Base parameters to be used for each run of this job.If the notebook takes a parameter that is not specified, the default value from the notebook will be used.
    depends_on Sequence[ActivityDependencyResponse]
    Activity depends on condition.
    description str
    Activity description.
    libraries Sequence[Mapping[str, Any]]
    A list of libraries to be installed on the cluster that will execute the job.
    linked_service_name LinkedServiceReferenceResponse
    Linked service reference.
    on_inactive_mark_as str
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    state str
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserPropertyResponse]
    Activity user properties.
    name String
    Activity name.
    notebookPath Any
    The absolute path of the notebook to be run in the Databricks Workspace. This path must begin with a slash. Type: string (or Expression with resultType string).
    baseParameters Map<Any>
    Base parameters to be used for each run of this job.If the notebook takes a parameter that is not specified, the default value from the notebook will be used.
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    libraries List<Map<Any>>
    A list of libraries to be installed on the cluster that will execute the job.
    linkedServiceName Property Map
    Linked service reference.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy Property Map
    Activity policy.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.

    DatabricksSparkJarActivity, DatabricksSparkJarActivityArgs

    MainClassName object
    The full name of the class containing the main method to be executed. This class must be contained in a JAR provided as a library. Type: string (or Expression with resultType string).
    Name string
    Activity name.
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependency>
    Activity depends on condition.
    Description string
    Activity description.
    Libraries List<ImmutableDictionary<string, object>>
    A list of libraries to be installed on the cluster that will execute the job.
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    Linked service reference.
    OnInactiveMarkAs string | Pulumi.AzureNative.DataFactory.ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Parameters List<object>
    Parameters that will be passed to the main method.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicy
    Activity policy.
    State string | Pulumi.AzureNative.DataFactory.ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserProperty>
    Activity user properties.
    MainClassName interface{}
    The full name of the class containing the main method to be executed. This class must be contained in a JAR provided as a library. Type: string (or Expression with resultType string).
    Name string
    Activity name.
    DependsOn []ActivityDependency
    Activity depends on condition.
    Description string
    Activity description.
    Libraries []map[string]interface{}
    A list of libraries to be installed on the cluster that will execute the job.
    LinkedServiceName LinkedServiceReference
    Linked service reference.
    OnInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Parameters []interface{}
    Parameters that will be passed to the main method.
    Policy ActivityPolicy
    Activity policy.
    State string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserProperty
    Activity user properties.
    mainClassName Object
    The full name of the class containing the main method to be executed. This class must be contained in a JAR provided as a library. Type: string (or Expression with resultType string).
    name String
    Activity name.
    dependsOn List<ActivityDependency>
    Activity depends on condition.
    description String
    Activity description.
    libraries List<Map<String,Object>>
    A list of libraries to be installed on the cluster that will execute the job.
    linkedServiceName LinkedServiceReference
    Linked service reference.
    onInactiveMarkAs String | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters List<Object>
    Parameters that will be passed to the main method.
    policy ActivityPolicy
    Activity policy.
    state String | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserProperty>
    Activity user properties.
    mainClassName any
    The full name of the class containing the main method to be executed. This class must be contained in a JAR provided as a library. Type: string (or Expression with resultType string).
    name string
    Activity name.
    dependsOn ActivityDependency[]
    Activity depends on condition.
    description string
    Activity description.
    libraries {[key: string]: any}[]
    A list of libraries to be installed on the cluster that will execute the job.
    linkedServiceName LinkedServiceReference
    Linked service reference.
    onInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters any[]
    Parameters that will be passed to the main method.
    policy ActivityPolicy
    Activity policy.
    state string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserProperty[]
    Activity user properties.
    main_class_name Any
    The full name of the class containing the main method to be executed. This class must be contained in a JAR provided as a library. Type: string (or Expression with resultType string).
    name str
    Activity name.
    depends_on Sequence[ActivityDependency]
    Activity depends on condition.
    description str
    Activity description.
    libraries Sequence[Mapping[str, Any]]
    A list of libraries to be installed on the cluster that will execute the job.
    linked_service_name LinkedServiceReference
    Linked service reference.
    on_inactive_mark_as str | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters Sequence[Any]
    Parameters that will be passed to the main method.
    policy ActivityPolicy
    Activity policy.
    state str | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserProperty]
    Activity user properties.
    mainClassName Any
    The full name of the class containing the main method to be executed. This class must be contained in a JAR provided as a library. Type: string (or Expression with resultType string).
    name String
    Activity name.
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    libraries List<Map<Any>>
    A list of libraries to be installed on the cluster that will execute the job.
    linkedServiceName Property Map
    Linked service reference.
    onInactiveMarkAs String | "Succeeded" | "Failed" | "Skipped"
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters List<Any>
    Parameters that will be passed to the main method.
    policy Property Map
    Activity policy.
    state String | "Active" | "Inactive"
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.

    DatabricksSparkJarActivityResponse, DatabricksSparkJarActivityResponseArgs

    MainClassName object
    The full name of the class containing the main method to be executed. This class must be contained in a JAR provided as a library. Type: string (or Expression with resultType string).
    Name string
    Activity name.
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependencyResponse>
    Activity depends on condition.
    Description string
    Activity description.
    Libraries List<ImmutableDictionary<string, object>>
    A list of libraries to be installed on the cluster that will execute the job.
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    Linked service reference.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Parameters List<object>
    Parameters that will be passed to the main method.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicyResponse
    Activity policy.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserPropertyResponse>
    Activity user properties.
    MainClassName interface{}
    The full name of the class containing the main method to be executed. This class must be contained in a JAR provided as a library. Type: string (or Expression with resultType string).
    Name string
    Activity name.
    DependsOn []ActivityDependencyResponse
    Activity depends on condition.
    Description string
    Activity description.
    Libraries []map[string]interface{}
    A list of libraries to be installed on the cluster that will execute the job.
    LinkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Parameters []interface{}
    Parameters that will be passed to the main method.
    Policy ActivityPolicyResponse
    Activity policy.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserPropertyResponse
    Activity user properties.
    mainClassName Object
    The full name of the class containing the main method to be executed. This class must be contained in a JAR provided as a library. Type: string (or Expression with resultType string).
    name String
    Activity name.
    dependsOn List<ActivityDependencyResponse>
    Activity depends on condition.
    description String
    Activity description.
    libraries List<Map<String,Object>>
    A list of libraries to be installed on the cluster that will execute the job.
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters List<Object>
    Parameters that will be passed to the main method.
    policy ActivityPolicyResponse
    Activity policy.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserPropertyResponse>
    Activity user properties.
    mainClassName any
    The full name of the class containing the main method to be executed. This class must be contained in a JAR provided as a library. Type: string (or Expression with resultType string).
    name string
    Activity name.
    dependsOn ActivityDependencyResponse[]
    Activity depends on condition.
    description string
    Activity description.
    libraries {[key: string]: any}[]
    A list of libraries to be installed on the cluster that will execute the job.
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    onInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters any[]
    Parameters that will be passed to the main method.
    policy ActivityPolicyResponse
    Activity policy.
    state string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserPropertyResponse[]
    Activity user properties.
    main_class_name Any
    The full name of the class containing the main method to be executed. This class must be contained in a JAR provided as a library. Type: string (or Expression with resultType string).
    name str
    Activity name.
    depends_on Sequence[ActivityDependencyResponse]
    Activity depends on condition.
    description str
    Activity description.
    libraries Sequence[Mapping[str, Any]]
    A list of libraries to be installed on the cluster that will execute the job.
    linked_service_name LinkedServiceReferenceResponse
    Linked service reference.
    on_inactive_mark_as str
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters Sequence[Any]
    Parameters that will be passed to the main method.
    policy ActivityPolicyResponse
    Activity policy.
    state str
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserPropertyResponse]
    Activity user properties.
    mainClassName Any
    The full name of the class containing the main method to be executed. This class must be contained in a JAR provided as a library. Type: string (or Expression with resultType string).
    name String
    Activity name.
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    libraries List<Map<Any>>
    A list of libraries to be installed on the cluster that will execute the job.
    linkedServiceName Property Map
    Linked service reference.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters List<Any>
    Parameters that will be passed to the main method.
    policy Property Map
    Activity policy.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.

    DatabricksSparkPythonActivity, DatabricksSparkPythonActivityArgs

    Name string
    Activity name.
    PythonFile object
    The URI of the Python file to be executed. DBFS paths are supported. Type: string (or Expression with resultType string).
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependency>
    Activity depends on condition.
    Description string
    Activity description.
    Libraries List<ImmutableDictionary<string, object>>
    A list of libraries to be installed on the cluster that will execute the job.
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    Linked service reference.
    OnInactiveMarkAs string | Pulumi.AzureNative.DataFactory.ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Parameters List<object>
    Command line parameters that will be passed to the Python file.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicy
    Activity policy.
    State string | Pulumi.AzureNative.DataFactory.ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserProperty>
    Activity user properties.
    Name string
    Activity name.
    PythonFile interface{}
    The URI of the Python file to be executed. DBFS paths are supported. Type: string (or Expression with resultType string).
    DependsOn []ActivityDependency
    Activity depends on condition.
    Description string
    Activity description.
    Libraries []map[string]interface{}
    A list of libraries to be installed on the cluster that will execute the job.
    LinkedServiceName LinkedServiceReference
    Linked service reference.
    OnInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Parameters []interface{}
    Command line parameters that will be passed to the Python file.
    Policy ActivityPolicy
    Activity policy.
    State string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserProperty
    Activity user properties.
    name String
    Activity name.
    pythonFile Object
    The URI of the Python file to be executed. DBFS paths are supported. Type: string (or Expression with resultType string).
    dependsOn List<ActivityDependency>
    Activity depends on condition.
    description String
    Activity description.
    libraries List<Map<String,Object>>
    A list of libraries to be installed on the cluster that will execute the job.
    linkedServiceName LinkedServiceReference
    Linked service reference.
    onInactiveMarkAs String | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters List<Object>
    Command line parameters that will be passed to the Python file.
    policy ActivityPolicy
    Activity policy.
    state String | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserProperty>
    Activity user properties.
    name string
    Activity name.
    pythonFile any
    The URI of the Python file to be executed. DBFS paths are supported. Type: string (or Expression with resultType string).
    dependsOn ActivityDependency[]
    Activity depends on condition.
    description string
    Activity description.
    libraries {[key: string]: any}[]
    A list of libraries to be installed on the cluster that will execute the job.
    linkedServiceName LinkedServiceReference
    Linked service reference.
    onInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters any[]
    Command line parameters that will be passed to the Python file.
    policy ActivityPolicy
    Activity policy.
    state string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserProperty[]
    Activity user properties.
    name str
    Activity name.
    python_file Any
    The URI of the Python file to be executed. DBFS paths are supported. Type: string (or Expression with resultType string).
    depends_on Sequence[ActivityDependency]
    Activity depends on condition.
    description str
    Activity description.
    libraries Sequence[Mapping[str, Any]]
    A list of libraries to be installed on the cluster that will execute the job.
    linked_service_name LinkedServiceReference
    Linked service reference.
    on_inactive_mark_as str | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters Sequence[Any]
    Command line parameters that will be passed to the Python file.
    policy ActivityPolicy
    Activity policy.
    state str | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserProperty]
    Activity user properties.
    name String
    Activity name.
    pythonFile Any
    The URI of the Python file to be executed. DBFS paths are supported. Type: string (or Expression with resultType string).
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    libraries List<Map<Any>>
    A list of libraries to be installed on the cluster that will execute the job.
    linkedServiceName Property Map
    Linked service reference.
    onInactiveMarkAs String | "Succeeded" | "Failed" | "Skipped"
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters List<Any>
    Command line parameters that will be passed to the Python file.
    policy Property Map
    Activity policy.
    state String | "Active" | "Inactive"
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.

    DatabricksSparkPythonActivityResponse, DatabricksSparkPythonActivityResponseArgs

    Name string
    Activity name.
    PythonFile object
    The URI of the Python file to be executed. DBFS paths are supported. Type: string (or Expression with resultType string).
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependencyResponse>
    Activity depends on condition.
    Description string
    Activity description.
    Libraries List<ImmutableDictionary<string, object>>
    A list of libraries to be installed on the cluster that will execute the job.
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    Linked service reference.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Parameters List<object>
    Command line parameters that will be passed to the Python file.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicyResponse
    Activity policy.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserPropertyResponse>
    Activity user properties.
    Name string
    Activity name.
    PythonFile interface{}
    The URI of the Python file to be executed. DBFS paths are supported. Type: string (or Expression with resultType string).
    DependsOn []ActivityDependencyResponse
    Activity depends on condition.
    Description string
    Activity description.
    Libraries []map[string]interface{}
    A list of libraries to be installed on the cluster that will execute the job.
    LinkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Parameters []interface{}
    Command line parameters that will be passed to the Python file.
    Policy ActivityPolicyResponse
    Activity policy.
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    UserProperties []UserPropertyResponse
    Activity user properties.
    name String
    Activity name.
    pythonFile Object
    The URI of the Python file to be executed. DBFS paths are supported. Type: string (or Expression with resultType string).
    dependsOn List<ActivityDependencyResponse>
    Activity depends on condition.
    description String
    Activity description.
    libraries List<Map<String,Object>>
    A list of libraries to be installed on the cluster that will execute the job.
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters List<Object>
    Command line parameters that will be passed to the Python file.
    policy ActivityPolicyResponse
    Activity policy.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<UserPropertyResponse>
    Activity user properties.
    name string
    Activity name.
    pythonFile any
    The URI of the Python file to be executed. DBFS paths are supported. Type: string (or Expression with resultType string).
    dependsOn ActivityDependencyResponse[]
    Activity depends on condition.
    description string
    Activity description.
    libraries {[key: string]: any}[]
    A list of libraries to be installed on the cluster that will execute the job.
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    onInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters any[]
    Command line parameters that will be passed to the Python file.
    policy ActivityPolicyResponse
    Activity policy.
    state string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties UserPropertyResponse[]
    Activity user properties.
    name str
    Activity name.
    python_file Any
    The URI of the Python file to be executed. DBFS paths are supported. Type: string (or Expression with resultType string).
    depends_on Sequence[ActivityDependencyResponse]
    Activity depends on condition.
    description str
    Activity description.
    libraries Sequence[Mapping[str, Any]]
    A list of libraries to be installed on the cluster that will execute the job.
    linked_service_name LinkedServiceReferenceResponse
    Linked service reference.
    on_inactive_mark_as str
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters Sequence[Any]
    Command line parameters that will be passed to the Python file.
    policy ActivityPolicyResponse
    Activity policy.
    state str
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    user_properties Sequence[UserPropertyResponse]
    Activity user properties.
    name String
    Activity name.
    pythonFile Any
    The URI of the Python file to be executed. DBFS paths are supported. Type: string (or Expression with resultType string).
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    libraries List<Map<Any>>
    A list of libraries to be installed on the cluster that will execute the job.
    linkedServiceName Property Map
    Linked service reference.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    parameters List<Any>
    Command line parameters that will be passed to the Python file.
    policy Property Map
    Activity policy.
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    userProperties List<Property Map>
    Activity user properties.

    DatasetReference, DatasetReferenceArgs

    ReferenceName string
    Reference dataset name.
    Type string
    Dataset reference type.
    Parameters Dictionary<string, object>
    Arguments for dataset.
    ReferenceName string
    Reference dataset name.
    Type string
    Dataset reference type.
    Parameters map[string]interface{}
    Arguments for dataset.
    referenceName String
    Reference dataset name.
    type String
    Dataset reference type.
    parameters Map<String,Object>
    Arguments for dataset.
    referenceName string
    Reference dataset name.
    type string
    Dataset reference type.
    parameters {[key: string]: any}
    Arguments for dataset.
    reference_name str
    Reference dataset name.
    type str
    Dataset reference type.
    parameters Mapping[str, Any]
    Arguments for dataset.
    referenceName String
    Reference dataset name.
    type String
    Dataset reference type.
    parameters Map<Any>
    Arguments for dataset.

    DatasetReferenceResponse, DatasetReferenceResponseArgs

    ReferenceName string
    Reference dataset name.
    Type string
    Dataset reference type.
    Parameters Dictionary<string, object>
    Arguments for dataset.
    ReferenceName string
    Reference dataset name.
    Type string
    Dataset reference type.
    Parameters map[string]interface{}
    Arguments for dataset.
    referenceName String
    Reference dataset name.
    type String
    Dataset reference type.
    parameters Map<String,Object>
    Arguments for dataset.
    referenceName string
    Reference dataset name.
    type string
    Dataset reference type.
    parameters {[key: string]: any}
    Arguments for dataset.
    reference_name str
    Reference dataset name.
    type str
    Dataset reference type.
    parameters Mapping[str, Any]
    Arguments for dataset.
    referenceName String
    Reference dataset name.
    type String
    Dataset reference type.
    parameters Map<Any>
    Arguments for dataset.

    Db2Source, Db2SourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    Database query. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    Database query. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    Database query. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    Database query. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Database query. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Database query. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    Db2SourceResponse, Db2SourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    Database query. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    Database query. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    Database query. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    Database query. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Database query. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    Database query. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    DeleteActivity, DeleteActivityArgs

    Dataset Pulumi.AzureNative.DataFactory.Inputs.DatasetReference
    Delete activity dataset reference.
    Name string
    Activity name.
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependency>
    Activity depends on condition.
    Description string
    Activity description.
    EnableLogging object
    Whether to record detailed logs of delete-activity execution. Default value is false. Type: boolean (or Expression with resultType boolean).
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReference
    Linked service reference.
    LogStorageSettings Pulumi.AzureNative.DataFactory.Inputs.LogStorageSettings
    Log storage settings customer need to provide when enableLogging is true.
    MaxConcurrentConnections int
    The max concurrent connections to connect data source at the same time.
    OnInactiveMarkAs string | Pulumi.AzureNative.DataFactory.ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicy
    Activity policy.
    Recursive object
    If true, files or sub-folders under current folder path will be deleted recursively. Default is false. Type: boolean (or Expression with resultType boolean).
    State string | Pulumi.AzureNative.DataFactory.ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    StoreSettings Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3ReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageReadSettings | Pulumi.AzureNative.DataFactory.Inputs.FileServerReadSettings | Pulumi.AzureNative.DataFactory.Inputs.FtpReadSettings | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageReadSettings | Pulumi.AzureNative.DataFactory.Inputs.HdfsReadSettings | Pulumi.AzureNative.DataFactory.Inputs.HttpReadSettings | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseReadSettings | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageReadSettings | Pulumi.AzureNative.DataFactory.Inputs.SftpReadSettings
    Delete activity store settings.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserProperty>
    Activity user properties.
    Dataset DatasetReference
    Delete activity dataset reference.
    Name string
    Activity name.
    DependsOn []ActivityDependency
    Activity depends on condition.
    Description string
    Activity description.
    EnableLogging interface{}
    Whether to record detailed logs of delete-activity execution. Default value is false. Type: boolean (or Expression with resultType boolean).
    LinkedServiceName LinkedServiceReference
    Linked service reference.
    LogStorageSettings LogStorageSettings
    Log storage settings customer need to provide when enableLogging is true.
    MaxConcurrentConnections int
    The max concurrent connections to connect data source at the same time.
    OnInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy ActivityPolicy
    Activity policy.
    Recursive interface{}
    If true, files or sub-folders under current folder path will be deleted recursively. Default is false. Type: boolean (or Expression with resultType boolean).
    State string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    StoreSettings AmazonS3CompatibleReadSettings | AmazonS3ReadSettings | AzureBlobFSReadSettings | AzureBlobStorageReadSettings | AzureDataLakeStoreReadSettings | AzureFileStorageReadSettings | FileServerReadSettings | FtpReadSettings | GoogleCloudStorageReadSettings | HdfsReadSettings | HttpReadSettings | LakeHouseReadSettings | OracleCloudStorageReadSettings | SftpReadSettings
    Delete activity store settings.
    UserProperties []UserProperty
    Activity user properties.
    dataset DatasetReference
    Delete activity dataset reference.
    name String
    Activity name.
    dependsOn List<ActivityDependency>
    Activity depends on condition.
    description String
    Activity description.
    enableLogging Object
    Whether to record detailed logs of delete-activity execution. Default value is false. Type: boolean (or Expression with resultType boolean).
    linkedServiceName LinkedServiceReference
    Linked service reference.
    logStorageSettings LogStorageSettings
    Log storage settings customer need to provide when enableLogging is true.
    maxConcurrentConnections Integer
    The max concurrent connections to connect data source at the same time.
    onInactiveMarkAs String | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    recursive Object
    If true, files or sub-folders under current folder path will be deleted recursively. Default is false. Type: boolean (or Expression with resultType boolean).
    state String | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    storeSettings AmazonS3CompatibleReadSettings | AmazonS3ReadSettings | AzureBlobFSReadSettings | AzureBlobStorageReadSettings | AzureDataLakeStoreReadSettings | AzureFileStorageReadSettings | FileServerReadSettings | FtpReadSettings | GoogleCloudStorageReadSettings | HdfsReadSettings | HttpReadSettings | LakeHouseReadSettings | OracleCloudStorageReadSettings | SftpReadSettings
    Delete activity store settings.
    userProperties List<UserProperty>
    Activity user properties.
    dataset DatasetReference
    Delete activity dataset reference.
    name string
    Activity name.
    dependsOn ActivityDependency[]
    Activity depends on condition.
    description string
    Activity description.
    enableLogging any
    Whether to record detailed logs of delete-activity execution. Default value is false. Type: boolean (or Expression with resultType boolean).
    linkedServiceName LinkedServiceReference
    Linked service reference.
    logStorageSettings LogStorageSettings
    Log storage settings customer need to provide when enableLogging is true.
    maxConcurrentConnections number
    The max concurrent connections to connect data source at the same time.
    onInactiveMarkAs string | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    recursive any
    If true, files or sub-folders under current folder path will be deleted recursively. Default is false. Type: boolean (or Expression with resultType boolean).
    state string | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    storeSettings AmazonS3CompatibleReadSettings | AmazonS3ReadSettings | AzureBlobFSReadSettings | AzureBlobStorageReadSettings | AzureDataLakeStoreReadSettings | AzureFileStorageReadSettings | FileServerReadSettings | FtpReadSettings | GoogleCloudStorageReadSettings | HdfsReadSettings | HttpReadSettings | LakeHouseReadSettings | OracleCloudStorageReadSettings | SftpReadSettings
    Delete activity store settings.
    userProperties UserProperty[]
    Activity user properties.
    dataset DatasetReference
    Delete activity dataset reference.
    name str
    Activity name.
    depends_on Sequence[ActivityDependency]
    Activity depends on condition.
    description str
    Activity description.
    enable_logging Any
    Whether to record detailed logs of delete-activity execution. Default value is false. Type: boolean (or Expression with resultType boolean).
    linked_service_name LinkedServiceReference
    Linked service reference.
    log_storage_settings LogStorageSettings
    Log storage settings customer need to provide when enableLogging is true.
    max_concurrent_connections int
    The max concurrent connections to connect data source at the same time.
    on_inactive_mark_as str | ActivityOnInactiveMarkAs
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicy
    Activity policy.
    recursive Any
    If true, files or sub-folders under current folder path will be deleted recursively. Default is false. Type: boolean (or Expression with resultType boolean).
    state str | ActivityState
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    store_settings AmazonS3CompatibleReadSettings | AmazonS3ReadSettings | AzureBlobFSReadSettings | AzureBlobStorageReadSettings | AzureDataLakeStoreReadSettings | AzureFileStorageReadSettings | FileServerReadSettings | FtpReadSettings | GoogleCloudStorageReadSettings | HdfsReadSettings | HttpReadSettings | LakeHouseReadSettings | OracleCloudStorageReadSettings | SftpReadSettings
    Delete activity store settings.
    user_properties Sequence[UserProperty]
    Activity user properties.
    dataset Property Map
    Delete activity dataset reference.
    name String
    Activity name.
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    enableLogging Any
    Whether to record detailed logs of delete-activity execution. Default value is false. Type: boolean (or Expression with resultType boolean).
    linkedServiceName Property Map
    Linked service reference.
    logStorageSettings Property Map
    Log storage settings customer need to provide when enableLogging is true.
    maxConcurrentConnections Number
    The max concurrent connections to connect data source at the same time.
    onInactiveMarkAs String | "Succeeded" | "Failed" | "Skipped"
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy Property Map
    Activity policy.
    recursive Any
    If true, files or sub-folders under current folder path will be deleted recursively. Default is false. Type: boolean (or Expression with resultType boolean).
    state String | "Active" | "Inactive"
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    storeSettings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    Delete activity store settings.
    userProperties List<Property Map>
    Activity user properties.

    DeleteActivityResponse, DeleteActivityResponseArgs

    Dataset Pulumi.AzureNative.DataFactory.Inputs.DatasetReferenceResponse
    Delete activity dataset reference.
    Name string
    Activity name.
    DependsOn List<Pulumi.AzureNative.DataFactory.Inputs.ActivityDependencyResponse>
    Activity depends on condition.
    Description string
    Activity description.
    EnableLogging object
    Whether to record detailed logs of delete-activity execution. Default value is false. Type: boolean (or Expression with resultType boolean).
    LinkedServiceName Pulumi.AzureNative.DataFactory.Inputs.LinkedServiceReferenceResponse
    Linked service reference.
    LogStorageSettings Pulumi.AzureNative.DataFactory.Inputs.LogStorageSettingsResponse
    Log storage settings customer need to provide when enableLogging is true.
    MaxConcurrentConnections int
    The max concurrent connections to connect data source at the same time.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy Pulumi.AzureNative.DataFactory.Inputs.ActivityPolicyResponse
    Activity policy.
    Recursive object
    If true, files or sub-folders under current folder path will be deleted recursively. Default is false. Type: boolean (or Expression with resultType boolean).
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    StoreSettings Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3ReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.FileServerReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.FtpReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.HdfsReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.HttpReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.SftpReadSettingsResponse
    Delete activity store settings.
    UserProperties List<Pulumi.AzureNative.DataFactory.Inputs.UserPropertyResponse>
    Activity user properties.
    Dataset DatasetReferenceResponse
    Delete activity dataset reference.
    Name string
    Activity name.
    DependsOn []ActivityDependencyResponse
    Activity depends on condition.
    Description string
    Activity description.
    EnableLogging interface{}
    Whether to record detailed logs of delete-activity execution. Default value is false. Type: boolean (or Expression with resultType boolean).
    LinkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    LogStorageSettings LogStorageSettingsResponse
    Log storage settings customer need to provide when enableLogging is true.
    MaxConcurrentConnections int
    The max concurrent connections to connect data source at the same time.
    OnInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    Policy ActivityPolicyResponse
    Activity policy.
    Recursive interface{}
    If true, files or sub-folders under current folder path will be deleted recursively. Default is false. Type: boolean (or Expression with resultType boolean).
    State string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    StoreSettings AmazonS3CompatibleReadSettingsResponse | AmazonS3ReadSettingsResponse | AzureBlobFSReadSettingsResponse | AzureBlobStorageReadSettingsResponse | AzureDataLakeStoreReadSettingsResponse | AzureFileStorageReadSettingsResponse | FileServerReadSettingsResponse | FtpReadSettingsResponse | GoogleCloudStorageReadSettingsResponse | HdfsReadSettingsResponse | HttpReadSettingsResponse | LakeHouseReadSettingsResponse | OracleCloudStorageReadSettingsResponse | SftpReadSettingsResponse
    Delete activity store settings.
    UserProperties []UserPropertyResponse
    Activity user properties.
    dataset DatasetReferenceResponse
    Delete activity dataset reference.
    name String
    Activity name.
    dependsOn List<ActivityDependencyResponse>
    Activity depends on condition.
    description String
    Activity description.
    enableLogging Object
    Whether to record detailed logs of delete-activity execution. Default value is false. Type: boolean (or Expression with resultType boolean).
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    logStorageSettings LogStorageSettingsResponse
    Log storage settings customer need to provide when enableLogging is true.
    maxConcurrentConnections Integer
    The max concurrent connections to connect data source at the same time.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    recursive Object
    If true, files or sub-folders under current folder path will be deleted recursively. Default is false. Type: boolean (or Expression with resultType boolean).
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    storeSettings AmazonS3CompatibleReadSettingsResponse | AmazonS3ReadSettingsResponse | AzureBlobFSReadSettingsResponse | AzureBlobStorageReadSettingsResponse | AzureDataLakeStoreReadSettingsResponse | AzureFileStorageReadSettingsResponse | FileServerReadSettingsResponse | FtpReadSettingsResponse | GoogleCloudStorageReadSettingsResponse | HdfsReadSettingsResponse | HttpReadSettingsResponse | LakeHouseReadSettingsResponse | OracleCloudStorageReadSettingsResponse | SftpReadSettingsResponse
    Delete activity store settings.
    userProperties List<UserPropertyResponse>
    Activity user properties.
    dataset DatasetReferenceResponse
    Delete activity dataset reference.
    name string
    Activity name.
    dependsOn ActivityDependencyResponse[]
    Activity depends on condition.
    description string
    Activity description.
    enableLogging any
    Whether to record detailed logs of delete-activity execution. Default value is false. Type: boolean (or Expression with resultType boolean).
    linkedServiceName LinkedServiceReferenceResponse
    Linked service reference.
    logStorageSettings LogStorageSettingsResponse
    Log storage settings customer need to provide when enableLogging is true.
    maxConcurrentConnections number
    The max concurrent connections to connect data source at the same time.
    onInactiveMarkAs string
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    recursive any
    If true, files or sub-folders under current folder path will be deleted recursively. Default is false. Type: boolean (or Expression with resultType boolean).
    state string
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    storeSettings AmazonS3CompatibleReadSettingsResponse | AmazonS3ReadSettingsResponse | AzureBlobFSReadSettingsResponse | AzureBlobStorageReadSettingsResponse | AzureDataLakeStoreReadSettingsResponse | AzureFileStorageReadSettingsResponse | FileServerReadSettingsResponse | FtpReadSettingsResponse | GoogleCloudStorageReadSettingsResponse | HdfsReadSettingsResponse | HttpReadSettingsResponse | LakeHouseReadSettingsResponse | OracleCloudStorageReadSettingsResponse | SftpReadSettingsResponse
    Delete activity store settings.
    userProperties UserPropertyResponse[]
    Activity user properties.
    dataset DatasetReferenceResponse
    Delete activity dataset reference.
    name str
    Activity name.
    depends_on Sequence[ActivityDependencyResponse]
    Activity depends on condition.
    description str
    Activity description.
    enable_logging Any
    Whether to record detailed logs of delete-activity execution. Default value is false. Type: boolean (or Expression with resultType boolean).
    linked_service_name LinkedServiceReferenceResponse
    Linked service reference.
    log_storage_settings LogStorageSettingsResponse
    Log storage settings customer need to provide when enableLogging is true.
    max_concurrent_connections int
    The max concurrent connections to connect data source at the same time.
    on_inactive_mark_as str
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy ActivityPolicyResponse
    Activity policy.
    recursive Any
    If true, files or sub-folders under current folder path will be deleted recursively. Default is false. Type: boolean (or Expression with resultType boolean).
    state str
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    store_settings AmazonS3CompatibleReadSettingsResponse | AmazonS3ReadSettingsResponse | AzureBlobFSReadSettingsResponse | AzureBlobStorageReadSettingsResponse | AzureDataLakeStoreReadSettingsResponse | AzureFileStorageReadSettingsResponse | FileServerReadSettingsResponse | FtpReadSettingsResponse | GoogleCloudStorageReadSettingsResponse | HdfsReadSettingsResponse | HttpReadSettingsResponse | LakeHouseReadSettingsResponse | OracleCloudStorageReadSettingsResponse | SftpReadSettingsResponse
    Delete activity store settings.
    user_properties Sequence[UserPropertyResponse]
    Activity user properties.
    dataset Property Map
    Delete activity dataset reference.
    name String
    Activity name.
    dependsOn List<Property Map>
    Activity depends on condition.
    description String
    Activity description.
    enableLogging Any
    Whether to record detailed logs of delete-activity execution. Default value is false. Type: boolean (or Expression with resultType boolean).
    linkedServiceName Property Map
    Linked service reference.
    logStorageSettings Property Map
    Log storage settings customer need to provide when enableLogging is true.
    maxConcurrentConnections Number
    The max concurrent connections to connect data source at the same time.
    onInactiveMarkAs String
    Status result of the activity when the state is set to Inactive. This is an optional property and if not provided when the activity is inactive, the status will be Succeeded by default.
    policy Property Map
    Activity policy.
    recursive Any
    If true, files or sub-folders under current folder path will be deleted recursively. Default is false. Type: boolean (or Expression with resultType boolean).
    state String
    Activity state. This is an optional property and if not provided, the state will be Active by default.
    storeSettings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    Delete activity store settings.
    userProperties List<Property Map>
    Activity user properties.

    DelimitedTextReadSettings, DelimitedTextReadSettingsArgs

    CompressionProperties Pulumi.AzureNative.DataFactory.Inputs.TarGZipReadSettings | Pulumi.AzureNative.DataFactory.Inputs.TarReadSettings | Pulumi.AzureNative.DataFactory.Inputs.ZipDeflateReadSettings
    Compression settings.
    SkipLineCount object
    Indicates the number of non-empty rows to skip when reading data from input files. Type: integer (or Expression with resultType integer).
    CompressionProperties TarGZipReadSettings | TarReadSettings | ZipDeflateReadSettings
    Compression settings.
    SkipLineCount interface{}
    Indicates the number of non-empty rows to skip when reading data from input files. Type: integer (or Expression with resultType integer).
    compressionProperties TarGZipReadSettings | TarReadSettings | ZipDeflateReadSettings
    Compression settings.
    skipLineCount Object
    Indicates the number of non-empty rows to skip when reading data from input files. Type: integer (or Expression with resultType integer).
    compressionProperties TarGZipReadSettings | TarReadSettings | ZipDeflateReadSettings
    Compression settings.
    skipLineCount any
    Indicates the number of non-empty rows to skip when reading data from input files. Type: integer (or Expression with resultType integer).
    compression_properties TarGZipReadSettings | TarReadSettings | ZipDeflateReadSettings
    Compression settings.
    skip_line_count Any
    Indicates the number of non-empty rows to skip when reading data from input files. Type: integer (or Expression with resultType integer).
    compressionProperties Property Map | Property Map | Property Map
    Compression settings.
    skipLineCount Any
    Indicates the number of non-empty rows to skip when reading data from input files. Type: integer (or Expression with resultType integer).

    DelimitedTextReadSettingsResponse, DelimitedTextReadSettingsResponseArgs

    CompressionProperties Pulumi.AzureNative.DataFactory.Inputs.TarGZipReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.TarReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.ZipDeflateReadSettingsResponse
    Compression settings.
    SkipLineCount object
    Indicates the number of non-empty rows to skip when reading data from input files. Type: integer (or Expression with resultType integer).
    CompressionProperties TarGZipReadSettingsResponse | TarReadSettingsResponse | ZipDeflateReadSettingsResponse
    Compression settings.
    SkipLineCount interface{}
    Indicates the number of non-empty rows to skip when reading data from input files. Type: integer (or Expression with resultType integer).
    compressionProperties TarGZipReadSettingsResponse | TarReadSettingsResponse | ZipDeflateReadSettingsResponse
    Compression settings.
    skipLineCount Object
    Indicates the number of non-empty rows to skip when reading data from input files. Type: integer (or Expression with resultType integer).
    compressionProperties TarGZipReadSettingsResponse | TarReadSettingsResponse | ZipDeflateReadSettingsResponse
    Compression settings.
    skipLineCount any
    Indicates the number of non-empty rows to skip when reading data from input files. Type: integer (or Expression with resultType integer).
    compression_properties TarGZipReadSettingsResponse | TarReadSettingsResponse | ZipDeflateReadSettingsResponse
    Compression settings.
    skip_line_count Any
    Indicates the number of non-empty rows to skip when reading data from input files. Type: integer (or Expression with resultType integer).
    compressionProperties Property Map | Property Map | Property Map
    Compression settings.
    skipLineCount Any
    Indicates the number of non-empty rows to skip when reading data from input files. Type: integer (or Expression with resultType integer).

    DelimitedTextSink, DelimitedTextSinkArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FormatSettings Pulumi.AzureNative.DataFactory.Inputs.DelimitedTextWriteSettings
    DelimitedText format settings.
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSWriteSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageWriteSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreWriteSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageWriteSettings | Pulumi.AzureNative.DataFactory.Inputs.FileServerWriteSettings | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseWriteSettings | Pulumi.AzureNative.DataFactory.Inputs.SftpWriteSettings
    DelimitedText store settings.
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FormatSettings DelimitedTextWriteSettings
    DelimitedText format settings.
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings AzureBlobFSWriteSettings | AzureBlobStorageWriteSettings | AzureDataLakeStoreWriteSettings | AzureFileStorageWriteSettings | FileServerWriteSettings | LakeHouseWriteSettings | SftpWriteSettings
    DelimitedText store settings.
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings DelimitedTextWriteSettings
    DelimitedText format settings.
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AzureBlobFSWriteSettings | AzureBlobStorageWriteSettings | AzureDataLakeStoreWriteSettings | AzureFileStorageWriteSettings | FileServerWriteSettings | LakeHouseWriteSettings | SftpWriteSettings
    DelimitedText store settings.
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings DelimitedTextWriteSettings
    DelimitedText format settings.
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AzureBlobFSWriteSettings | AzureBlobStorageWriteSettings | AzureDataLakeStoreWriteSettings | AzureFileStorageWriteSettings | FileServerWriteSettings | LakeHouseWriteSettings | SftpWriteSettings
    DelimitedText store settings.
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    format_settings DelimitedTextWriteSettings
    DelimitedText format settings.
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    store_settings AzureBlobFSWriteSettings | AzureBlobStorageWriteSettings | AzureDataLakeStoreWriteSettings | AzureFileStorageWriteSettings | FileServerWriteSettings | LakeHouseWriteSettings | SftpWriteSettings
    DelimitedText store settings.
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings Property Map
    DelimitedText format settings.
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    DelimitedText store settings.
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    DelimitedTextSinkResponse, DelimitedTextSinkResponseArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FormatSettings Pulumi.AzureNative.DataFactory.Inputs.DelimitedTextWriteSettingsResponse
    DelimitedText format settings.
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSWriteSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageWriteSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreWriteSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageWriteSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.FileServerWriteSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseWriteSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.SftpWriteSettingsResponse
    DelimitedText store settings.
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FormatSettings DelimitedTextWriteSettingsResponse
    DelimitedText format settings.
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings AzureBlobFSWriteSettingsResponse | AzureBlobStorageWriteSettingsResponse | AzureDataLakeStoreWriteSettingsResponse | AzureFileStorageWriteSettingsResponse | FileServerWriteSettingsResponse | LakeHouseWriteSettingsResponse | SftpWriteSettingsResponse
    DelimitedText store settings.
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings DelimitedTextWriteSettingsResponse
    DelimitedText format settings.
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AzureBlobFSWriteSettingsResponse | AzureBlobStorageWriteSettingsResponse | AzureDataLakeStoreWriteSettingsResponse | AzureFileStorageWriteSettingsResponse | FileServerWriteSettingsResponse | LakeHouseWriteSettingsResponse | SftpWriteSettingsResponse
    DelimitedText store settings.
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings DelimitedTextWriteSettingsResponse
    DelimitedText format settings.
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AzureBlobFSWriteSettingsResponse | AzureBlobStorageWriteSettingsResponse | AzureDataLakeStoreWriteSettingsResponse | AzureFileStorageWriteSettingsResponse | FileServerWriteSettingsResponse | LakeHouseWriteSettingsResponse | SftpWriteSettingsResponse
    DelimitedText store settings.
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    format_settings DelimitedTextWriteSettingsResponse
    DelimitedText format settings.
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    store_settings AzureBlobFSWriteSettingsResponse | AzureBlobStorageWriteSettingsResponse | AzureDataLakeStoreWriteSettingsResponse | AzureFileStorageWriteSettingsResponse | FileServerWriteSettingsResponse | LakeHouseWriteSettingsResponse | SftpWriteSettingsResponse
    DelimitedText store settings.
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings Property Map
    DelimitedText format settings.
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    DelimitedText store settings.
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    DelimitedTextSource, DelimitedTextSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FormatSettings Pulumi.AzureNative.DataFactory.Inputs.DelimitedTextReadSettings
    DelimitedText format settings.
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3ReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreReadSettings | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageReadSettings | Pulumi.AzureNative.DataFactory.Inputs.FileServerReadSettings | Pulumi.AzureNative.DataFactory.Inputs.FtpReadSettings | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageReadSettings | Pulumi.AzureNative.DataFactory.Inputs.HdfsReadSettings | Pulumi.AzureNative.DataFactory.Inputs.HttpReadSettings | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseReadSettings | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageReadSettings | Pulumi.AzureNative.DataFactory.Inputs.SftpReadSettings
    DelimitedText store settings.
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FormatSettings DelimitedTextReadSettings
    DelimitedText format settings.
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings AmazonS3CompatibleReadSettings | AmazonS3ReadSettings | AzureBlobFSReadSettings | AzureBlobStorageReadSettings | AzureDataLakeStoreReadSettings | AzureFileStorageReadSettings | FileServerReadSettings | FtpReadSettings | GoogleCloudStorageReadSettings | HdfsReadSettings | HttpReadSettings | LakeHouseReadSettings | OracleCloudStorageReadSettings | SftpReadSettings
    DelimitedText store settings.
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings DelimitedTextReadSettings
    DelimitedText format settings.
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AmazonS3CompatibleReadSettings | AmazonS3ReadSettings | AzureBlobFSReadSettings | AzureBlobStorageReadSettings | AzureDataLakeStoreReadSettings | AzureFileStorageReadSettings | FileServerReadSettings | FtpReadSettings | GoogleCloudStorageReadSettings | HdfsReadSettings | HttpReadSettings | LakeHouseReadSettings | OracleCloudStorageReadSettings | SftpReadSettings
    DelimitedText store settings.
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings DelimitedTextReadSettings
    DelimitedText format settings.
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AmazonS3CompatibleReadSettings | AmazonS3ReadSettings | AzureBlobFSReadSettings | AzureBlobStorageReadSettings | AzureDataLakeStoreReadSettings | AzureFileStorageReadSettings | FileServerReadSettings | FtpReadSettings | GoogleCloudStorageReadSettings | HdfsReadSettings | HttpReadSettings | LakeHouseReadSettings | OracleCloudStorageReadSettings | SftpReadSettings
    DelimitedText store settings.
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    format_settings DelimitedTextReadSettings
    DelimitedText format settings.
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    store_settings AmazonS3CompatibleReadSettings | AmazonS3ReadSettings | AzureBlobFSReadSettings | AzureBlobStorageReadSettings | AzureDataLakeStoreReadSettings | AzureFileStorageReadSettings | FileServerReadSettings | FtpReadSettings | GoogleCloudStorageReadSettings | HdfsReadSettings | HttpReadSettings | LakeHouseReadSettings | OracleCloudStorageReadSettings | SftpReadSettings
    DelimitedText store settings.
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings Property Map
    DelimitedText format settings.
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    DelimitedText store settings.

    DelimitedTextSourceResponse, DelimitedTextSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FormatSettings Pulumi.AzureNative.DataFactory.Inputs.DelimitedTextReadSettingsResponse
    DelimitedText format settings.
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings Pulumi.AzureNative.DataFactory.Inputs.AmazonS3CompatibleReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AmazonS3ReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobFSReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureBlobStorageReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureDataLakeStoreReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.AzureFileStorageReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.FileServerReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.FtpReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.GoogleCloudStorageReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.HdfsReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.HttpReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.LakeHouseReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.OracleCloudStorageReadSettingsResponse | Pulumi.AzureNative.DataFactory.Inputs.SftpReadSettingsResponse
    DelimitedText store settings.
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    FormatSettings DelimitedTextReadSettingsResponse
    DelimitedText format settings.
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    StoreSettings AmazonS3CompatibleReadSettingsResponse | AmazonS3ReadSettingsResponse | AzureBlobFSReadSettingsResponse | AzureBlobStorageReadSettingsResponse | AzureDataLakeStoreReadSettingsResponse | AzureFileStorageReadSettingsResponse | FileServerReadSettingsResponse | FtpReadSettingsResponse | GoogleCloudStorageReadSettingsResponse | HdfsReadSettingsResponse | HttpReadSettingsResponse | LakeHouseReadSettingsResponse | OracleCloudStorageReadSettingsResponse | SftpReadSettingsResponse
    DelimitedText store settings.
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings DelimitedTextReadSettingsResponse
    DelimitedText format settings.
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AmazonS3CompatibleReadSettingsResponse | AmazonS3ReadSettingsResponse | AzureBlobFSReadSettingsResponse | AzureBlobStorageReadSettingsResponse | AzureDataLakeStoreReadSettingsResponse | AzureFileStorageReadSettingsResponse | FileServerReadSettingsResponse | FtpReadSettingsResponse | GoogleCloudStorageReadSettingsResponse | HdfsReadSettingsResponse | HttpReadSettingsResponse | LakeHouseReadSettingsResponse | OracleCloudStorageReadSettingsResponse | SftpReadSettingsResponse
    DelimitedText store settings.
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings DelimitedTextReadSettingsResponse
    DelimitedText format settings.
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings AmazonS3CompatibleReadSettingsResponse | AmazonS3ReadSettingsResponse | AzureBlobFSReadSettingsResponse | AzureBlobStorageReadSettingsResponse | AzureDataLakeStoreReadSettingsResponse | AzureFileStorageReadSettingsResponse | FileServerReadSettingsResponse | FtpReadSettingsResponse | GoogleCloudStorageReadSettingsResponse | HdfsReadSettingsResponse | HttpReadSettingsResponse | LakeHouseReadSettingsResponse | OracleCloudStorageReadSettingsResponse | SftpReadSettingsResponse
    DelimitedText store settings.
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    format_settings DelimitedTextReadSettingsResponse
    DelimitedText format settings.
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    store_settings AmazonS3CompatibleReadSettingsResponse | AmazonS3ReadSettingsResponse | AzureBlobFSReadSettingsResponse | AzureBlobStorageReadSettingsResponse | AzureDataLakeStoreReadSettingsResponse | AzureFileStorageReadSettingsResponse | FileServerReadSettingsResponse | FtpReadSettingsResponse | GoogleCloudStorageReadSettingsResponse | HdfsReadSettingsResponse | HttpReadSettingsResponse | LakeHouseReadSettingsResponse | OracleCloudStorageReadSettingsResponse | SftpReadSettingsResponse
    DelimitedText store settings.
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    formatSettings Property Map
    DelimitedText format settings.
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    storeSettings Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map | Property Map
    DelimitedText store settings.

    DelimitedTextWriteSettings, DelimitedTextWriteSettingsArgs

    FileExtension object
    The file extension used to create the files. Type: string (or Expression with resultType string).
    FileNamePrefix object
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    MaxRowsPerFile object
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    QuoteAllText object
    Indicates whether string values should always be enclosed with quotes. Type: boolean (or Expression with resultType boolean).
    FileExtension interface{}
    The file extension used to create the files. Type: string (or Expression with resultType string).
    FileNamePrefix interface{}
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    MaxRowsPerFile interface{}
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    QuoteAllText interface{}
    Indicates whether string values should always be enclosed with quotes. Type: boolean (or Expression with resultType boolean).
    fileExtension Object
    The file extension used to create the files. Type: string (or Expression with resultType string).
    fileNamePrefix Object
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    maxRowsPerFile Object
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    quoteAllText Object
    Indicates whether string values should always be enclosed with quotes. Type: boolean (or Expression with resultType boolean).
    fileExtension any
    The file extension used to create the files. Type: string (or Expression with resultType string).
    fileNamePrefix any
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    maxRowsPerFile any
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    quoteAllText any
    Indicates whether string values should always be enclosed with quotes. Type: boolean (or Expression with resultType boolean).
    file_extension Any
    The file extension used to create the files. Type: string (or Expression with resultType string).
    file_name_prefix Any
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    max_rows_per_file Any
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    quote_all_text Any
    Indicates whether string values should always be enclosed with quotes. Type: boolean (or Expression with resultType boolean).
    fileExtension Any
    The file extension used to create the files. Type: string (or Expression with resultType string).
    fileNamePrefix Any
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    maxRowsPerFile Any
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    quoteAllText Any
    Indicates whether string values should always be enclosed with quotes. Type: boolean (or Expression with resultType boolean).

    DelimitedTextWriteSettingsResponse, DelimitedTextWriteSettingsResponseArgs

    FileExtension object
    The file extension used to create the files. Type: string (or Expression with resultType string).
    FileNamePrefix object
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    MaxRowsPerFile object
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    QuoteAllText object
    Indicates whether string values should always be enclosed with quotes. Type: boolean (or Expression with resultType boolean).
    FileExtension interface{}
    The file extension used to create the files. Type: string (or Expression with resultType string).
    FileNamePrefix interface{}
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    MaxRowsPerFile interface{}
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    QuoteAllText interface{}
    Indicates whether string values should always be enclosed with quotes. Type: boolean (or Expression with resultType boolean).
    fileExtension Object
    The file extension used to create the files. Type: string (or Expression with resultType string).
    fileNamePrefix Object
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    maxRowsPerFile Object
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    quoteAllText Object
    Indicates whether string values should always be enclosed with quotes. Type: boolean (or Expression with resultType boolean).
    fileExtension any
    The file extension used to create the files. Type: string (or Expression with resultType string).
    fileNamePrefix any
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    maxRowsPerFile any
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    quoteAllText any
    Indicates whether string values should always be enclosed with quotes. Type: boolean (or Expression with resultType boolean).
    file_extension Any
    The file extension used to create the files. Type: string (or Expression with resultType string).
    file_name_prefix Any
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    max_rows_per_file Any
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    quote_all_text Any
    Indicates whether string values should always be enclosed with quotes. Type: boolean (or Expression with resultType boolean).
    fileExtension Any
    The file extension used to create the files. Type: string (or Expression with resultType string).
    fileNamePrefix Any
    Specifies the file name pattern _. when copy from non-file based store without partitionOptions. Type: string (or Expression with resultType string).
    maxRowsPerFile Any
    Limit the written file's row count to be smaller than or equal to the specified count. Type: integer (or Expression with resultType integer).
    quoteAllText Any
    Indicates whether string values should always be enclosed with quotes. Type: boolean (or Expression with resultType boolean).

    DependencyCondition, DependencyConditionArgs

    Succeeded
    Succeeded
    Failed
    Failed
    Skipped
    Skipped
    Completed
    Completed
    DependencyConditionSucceeded
    Succeeded
    DependencyConditionFailed
    Failed
    DependencyConditionSkipped
    Skipped
    DependencyConditionCompleted
    Completed
    Succeeded
    Succeeded
    Failed
    Failed
    Skipped
    Skipped
    Completed
    Completed
    Succeeded
    Succeeded
    Failed
    Failed
    Skipped
    Skipped
    Completed
    Completed
    SUCCEEDED
    Succeeded
    FAILED
    Failed
    SKIPPED
    Skipped
    COMPLETED
    Completed
    "Succeeded"
    Succeeded
    "Failed"
    Failed
    "Skipped"
    Skipped
    "Completed"
    Completed

    DistcpSettings, DistcpSettingsArgs

    ResourceManagerEndpoint object
    Specifies the Yarn ResourceManager endpoint. Type: string (or Expression with resultType string).
    TempScriptPath object
    Specifies an existing folder path which will be used to store temp Distcp command script. The script file is generated by ADF and will be removed after Copy job finished. Type: string (or Expression with resultType string).
    DistcpOptions object
    Specifies the Distcp options. Type: string (or Expression with resultType string).
    ResourceManagerEndpoint interface{}
    Specifies the Yarn ResourceManager endpoint. Type: string (or Expression with resultType string).
    TempScriptPath interface{}
    Specifies an existing folder path which will be used to store temp Distcp command script. The script file is generated by ADF and will be removed after Copy job finished. Type: string (or Expression with resultType string).
    DistcpOptions interface{}
    Specifies the Distcp options. Type: string (or Expression with resultType string).
    resourceManagerEndpoint Object
    Specifies the Yarn ResourceManager endpoint. Type: string (or Expression with resultType string).
    tempScriptPath Object
    Specifies an existing folder path which will be used to store temp Distcp command script. The script file is generated by ADF and will be removed after Copy job finished. Type: string (or Expression with resultType string).
    distcpOptions Object
    Specifies the Distcp options. Type: string (or Expression with resultType string).
    resourceManagerEndpoint any
    Specifies the Yarn ResourceManager endpoint. Type: string (or Expression with resultType string).
    tempScriptPath any
    Specifies an existing folder path which will be used to store temp Distcp command script. The script file is generated by ADF and will be removed after Copy job finished. Type: string (or Expression with resultType string).
    distcpOptions any
    Specifies the Distcp options. Type: string (or Expression with resultType string).
    resource_manager_endpoint Any
    Specifies the Yarn ResourceManager endpoint. Type: string (or Expression with resultType string).
    temp_script_path Any
    Specifies an existing folder path which will be used to store temp Distcp command script. The script file is generated by ADF and will be removed after Copy job finished. Type: string (or Expression with resultType string).
    distcp_options Any
    Specifies the Distcp options. Type: string (or Expression with resultType string).
    resourceManagerEndpoint Any
    Specifies the Yarn ResourceManager endpoint. Type: string (or Expression with resultType string).
    tempScriptPath Any
    Specifies an existing folder path which will be used to store temp Distcp command script. The script file is generated by ADF and will be removed after Copy job finished. Type: string (or Expression with resultType string).
    distcpOptions Any
    Specifies the Distcp options. Type: string (or Expression with resultType string).

    DistcpSettingsResponse, DistcpSettingsResponseArgs

    ResourceManagerEndpoint object
    Specifies the Yarn ResourceManager endpoint. Type: string (or Expression with resultType string).
    TempScriptPath object
    Specifies an existing folder path which will be used to store temp Distcp command script. The script file is generated by ADF and will be removed after Copy job finished. Type: string (or Expression with resultType string).
    DistcpOptions object
    Specifies the Distcp options. Type: string (or Expression with resultType string).
    ResourceManagerEndpoint interface{}
    Specifies the Yarn ResourceManager endpoint. Type: string (or Expression with resultType string).
    TempScriptPath interface{}
    Specifies an existing folder path which will be used to store temp Distcp command script. The script file is generated by ADF and will be removed after Copy job finished. Type: string (or Expression with resultType string).
    DistcpOptions interface{}
    Specifies the Distcp options. Type: string (or Expression with resultType string).
    resourceManagerEndpoint Object
    Specifies the Yarn ResourceManager endpoint. Type: string (or Expression with resultType string).
    tempScriptPath Object
    Specifies an existing folder path which will be used to store temp Distcp command script. The script file is generated by ADF and will be removed after Copy job finished. Type: string (or Expression with resultType string).
    distcpOptions Object
    Specifies the Distcp options. Type: string (or Expression with resultType string).
    resourceManagerEndpoint any
    Specifies the Yarn ResourceManager endpoint. Type: string (or Expression with resultType string).
    tempScriptPath any
    Specifies an existing folder path which will be used to store temp Distcp command script. The script file is generated by ADF and will be removed after Copy job finished. Type: string (or Expression with resultType string).
    distcpOptions any
    Specifies the Distcp options. Type: string (or Expression with resultType string).
    resource_manager_endpoint Any
    Specifies the Yarn ResourceManager endpoint. Type: string (or Expression with resultType string).
    temp_script_path Any
    Specifies an existing folder path which will be used to store temp Distcp command script. The script file is generated by ADF and will be removed after Copy job finished. Type: string (or Expression with resultType string).
    distcp_options Any
    Specifies the Distcp options. Type: string (or Expression with resultType string).
    resourceManagerEndpoint Any
    Specifies the Yarn ResourceManager endpoint. Type: string (or Expression with resultType string).
    tempScriptPath Any
    Specifies an existing folder path which will be used to store temp Distcp command script. The script file is generated by ADF and will be removed after Copy job finished. Type: string (or Expression with resultType string).
    distcpOptions Any
    Specifies the Distcp options. Type: string (or Expression with resultType string).

    DocumentDbCollectionSink, DocumentDbCollectionSinkArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    NestingSeparator object
    Nested properties separator. Default is . (dot). Type: string (or Expression with resultType string).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior object
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    NestingSeparator interface{}
    Nested properties separator. Default is . (dot). Type: string (or Expression with resultType string).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior interface{}
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    nestingSeparator Object
    Nested properties separator. Default is . (dot). Type: string (or Expression with resultType string).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior Object
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    nestingSeparator any
    Nested properties separator. Default is . (dot). Type: string (or Expression with resultType string).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior any
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    nesting_separator Any
    Nested properties separator. Default is . (dot). Type: string (or Expression with resultType string).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_behavior Any
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    nestingSeparator Any
    Nested properties separator. Default is . (dot). Type: string (or Expression with resultType string).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior Any
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.

    DocumentDbCollectionSinkResponse, DocumentDbCollectionSinkResponseArgs

    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    NestingSeparator object
    Nested properties separator. Default is . (dot). Type: string (or Expression with resultType string).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior object
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    NestingSeparator interface{}
    Nested properties separator. Default is . (dot). Type: string (or Expression with resultType string).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior interface{}
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    nestingSeparator Object
    Nested properties separator. Default is . (dot). Type: string (or Expression with resultType string).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior Object
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    nestingSeparator any
    Nested properties separator. Default is . (dot). Type: string (or Expression with resultType string).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior any
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    nesting_separator Any
    Nested properties separator. Default is . (dot). Type: string (or Expression with resultType string).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_behavior Any
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    nestingSeparator Any
    Nested properties separator. Default is . (dot). Type: string (or Expression with resultType string).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior Any
    Describes how to write data to Azure Cosmos DB. Type: string (or Expression with resultType string). Allowed values: insert and upsert.

    DocumentDbCollectionSource, DocumentDbCollectionSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    NestingSeparator object
    Nested properties separator. Type: string (or Expression with resultType string).
    Query object
    Documents query. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    NestingSeparator interface{}
    Nested properties separator. Type: string (or Expression with resultType string).
    Query interface{}
    Documents query. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    nestingSeparator Object
    Nested properties separator. Type: string (or Expression with resultType string).
    query Object
    Documents query. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    nestingSeparator any
    Nested properties separator. Type: string (or Expression with resultType string).
    query any
    Documents query. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    nesting_separator Any
    Nested properties separator. Type: string (or Expression with resultType string).
    query Any
    Documents query. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    nestingSeparator Any
    Nested properties separator. Type: string (or Expression with resultType string).
    query Any
    Documents query. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    DocumentDbCollectionSourceResponse, DocumentDbCollectionSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    NestingSeparator object
    Nested properties separator. Type: string (or Expression with resultType string).
    Query object
    Documents query. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    NestingSeparator interface{}
    Nested properties separator. Type: string (or Expression with resultType string).
    Query interface{}
    Documents query. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    nestingSeparator Object
    Nested properties separator. Type: string (or Expression with resultType string).
    query Object
    Documents query. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    nestingSeparator any
    Nested properties separator. Type: string (or Expression with resultType string).
    query any
    Documents query. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    nesting_separator Any
    Nested properties separator. Type: string (or Expression with resultType string).
    query Any
    Documents query. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    nestingSeparator Any
    Nested properties separator. Type: string (or Expression with resultType string).
    query Any
    Documents query. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    DrillSource, DrillSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    DrillSourceResponse, DrillSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    DynamicsAXSource, DynamicsAXSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    HttpRequestTimeout object
    The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    HttpRequestTimeout interface{}
    The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    httpRequestTimeout Object
    The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    httpRequestTimeout any
    The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    http_request_timeout Any
    The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    httpRequestTimeout Any
    The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    DynamicsAXSourceResponse, DynamicsAXSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    HttpRequestTimeout object
    The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    HttpRequestTimeout interface{}
    The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    httpRequestTimeout Object
    The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    httpRequestTimeout any
    The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    http_request_timeout Any
    The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    httpRequestTimeout Any
    The timeout (TimeSpan) to get an HTTP response. It is the timeout to get a response, not the timeout to read response data. Default value: 00:05:00. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    DynamicsCrmSink, DynamicsCrmSinkArgs

    WriteBehavior string | Pulumi.AzureNative.DataFactory.DynamicsSinkWriteBehavior
    The write behavior for the operation.
    AlternateKeyName object
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IgnoreNullValues object
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior string | DynamicsSinkWriteBehavior
    The write behavior for the operation.
    AlternateKeyName interface{}
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IgnoreNullValues interface{}
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior String | DynamicsSinkWriteBehavior
    The write behavior for the operation.
    alternateKeyName Object
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignoreNullValues Object
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior string | DynamicsSinkWriteBehavior
    The write behavior for the operation.
    alternateKeyName any
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignoreNullValues any
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_behavior str | DynamicsSinkWriteBehavior
    The write behavior for the operation.
    alternate_key_name Any
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignore_null_values Any
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior String | "Upsert"
    The write behavior for the operation.
    alternateKeyName Any
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignoreNullValues Any
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    DynamicsCrmSinkResponse, DynamicsCrmSinkResponseArgs

    WriteBehavior string
    The write behavior for the operation.
    AlternateKeyName object
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IgnoreNullValues object
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior string
    The write behavior for the operation.
    AlternateKeyName interface{}
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IgnoreNullValues interface{}
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior String
    The write behavior for the operation.
    alternateKeyName Object
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignoreNullValues Object
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior string
    The write behavior for the operation.
    alternateKeyName any
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignoreNullValues any
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_behavior str
    The write behavior for the operation.
    alternate_key_name Any
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignore_null_values Any
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior String
    The write behavior for the operation.
    alternateKeyName Any
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignoreNullValues Any
    The flag indicating whether to ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    DynamicsCrmSource, DynamicsCrmSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    FetchXML is a proprietary query language that is used in Microsoft Dynamics CRM (online & on-premises). Type: string (or Expression with resultType string).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    FetchXML is a proprietary query language that is used in Microsoft Dynamics CRM (online & on-premises). Type: string (or Expression with resultType string).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    FetchXML is a proprietary query language that is used in Microsoft Dynamics CRM (online & on-premises). Type: string (or Expression with resultType string).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    FetchXML is a proprietary query language that is used in Microsoft Dynamics CRM (online & on-premises). Type: string (or Expression with resultType string).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    FetchXML is a proprietary query language that is used in Microsoft Dynamics CRM (online & on-premises). Type: string (or Expression with resultType string).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    FetchXML is a proprietary query language that is used in Microsoft Dynamics CRM (online & on-premises). Type: string (or Expression with resultType string).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    DynamicsCrmSourceResponse, DynamicsCrmSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    FetchXML is a proprietary query language that is used in Microsoft Dynamics CRM (online & on-premises). Type: string (or Expression with resultType string).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    FetchXML is a proprietary query language that is used in Microsoft Dynamics CRM (online & on-premises). Type: string (or Expression with resultType string).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    FetchXML is a proprietary query language that is used in Microsoft Dynamics CRM (online & on-premises). Type: string (or Expression with resultType string).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    FetchXML is a proprietary query language that is used in Microsoft Dynamics CRM (online & on-premises). Type: string (or Expression with resultType string).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    FetchXML is a proprietary query language that is used in Microsoft Dynamics CRM (online & on-premises). Type: string (or Expression with resultType string).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    FetchXML is a proprietary query language that is used in Microsoft Dynamics CRM (online & on-premises). Type: string (or Expression with resultType string).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    DynamicsSink, DynamicsSinkArgs

    WriteBehavior string | Pulumi.AzureNative.DataFactory.DynamicsSinkWriteBehavior
    The write behavior for the operation.
    AlternateKeyName object
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IgnoreNullValues object
    The flag indicating whether ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior string | DynamicsSinkWriteBehavior
    The write behavior for the operation.
    AlternateKeyName interface{}
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IgnoreNullValues interface{}
    The flag indicating whether ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior String | DynamicsSinkWriteBehavior
    The write behavior for the operation.
    alternateKeyName Object
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignoreNullValues Object
    The flag indicating whether ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior string | DynamicsSinkWriteBehavior
    The write behavior for the operation.
    alternateKeyName any
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignoreNullValues any
    The flag indicating whether ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_behavior str | DynamicsSinkWriteBehavior
    The write behavior for the operation.
    alternate_key_name Any
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignore_null_values Any
    The flag indicating whether ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior String | "Upsert"
    The write behavior for the operation.
    alternateKeyName Any
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignoreNullValues Any
    The flag indicating whether ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    DynamicsSinkResponse, DynamicsSinkResponseArgs

    WriteBehavior string
    The write behavior for the operation.
    AlternateKeyName object
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IgnoreNullValues object
    The flag indicating whether ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount object
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBehavior string
    The write behavior for the operation.
    AlternateKeyName interface{}
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    IgnoreNullValues interface{}
    The flag indicating whether ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    SinkRetryCount interface{}
    Sink retry count. Type: integer (or Expression with resultType integer).
    SinkRetryWait interface{}
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    WriteBatchSize interface{}
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    WriteBatchTimeout interface{}
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior String
    The write behavior for the operation.
    alternateKeyName Object
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignoreNullValues Object
    The flag indicating whether ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Object
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Object
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Object
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Object
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior string
    The write behavior for the operation.
    alternateKeyName any
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignoreNullValues any
    The flag indicating whether ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_behavior str
    The write behavior for the operation.
    alternate_key_name Any
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignore_null_values Any
    The flag indicating whether ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sink_retry_count Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sink_retry_wait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    write_batch_size Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    write_batch_timeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBehavior String
    The write behavior for the operation.
    alternateKeyName Any
    The logical name of the alternate key which will be used when upserting records. Type: string (or Expression with resultType string).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    ignoreNullValues Any
    The flag indicating whether ignore null values from input dataset (except key fields) during write operation. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the sink data store. Type: integer (or Expression with resultType integer).
    sinkRetryCount Any
    Sink retry count. Type: integer (or Expression with resultType integer).
    sinkRetryWait Any
    Sink retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    writeBatchSize Any
    Write batch size. Type: integer (or Expression with resultType integer), minimum: 0.
    writeBatchTimeout Any
    Write batch timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    DynamicsSinkWriteBehavior, DynamicsSinkWriteBehaviorArgs

    Upsert
    Upsert
    DynamicsSinkWriteBehaviorUpsert
    Upsert
    Upsert
    Upsert
    Upsert
    Upsert
    UPSERT
    Upsert
    "Upsert"
    Upsert

    DynamicsSource, DynamicsSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    FetchXML is a proprietary query language that is used in Microsoft Dynamics (online & on-premises). Type: string (or Expression with resultType string).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    FetchXML is a proprietary query language that is used in Microsoft Dynamics (online & on-premises). Type: string (or Expression with resultType string).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    FetchXML is a proprietary query language that is used in Microsoft Dynamics (online & on-premises). Type: string (or Expression with resultType string).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    FetchXML is a proprietary query language that is used in Microsoft Dynamics (online & on-premises). Type: string (or Expression with resultType string).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    FetchXML is a proprietary query language that is used in Microsoft Dynamics (online & on-premises). Type: string (or Expression with resultType string).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    FetchXML is a proprietary query language that is used in Microsoft Dynamics (online & on-premises). Type: string (or Expression with resultType string).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    DynamicsSourceResponse, DynamicsSourceResponseArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    FetchXML is a proprietary query language that is used in Microsoft Dynamics (online & on-premises). Type: string (or Expression with resultType string).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    FetchXML is a proprietary query language that is used in Microsoft Dynamics (online & on-premises). Type: string (or Expression with resultType string).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    FetchXML is a proprietary query language that is used in Microsoft Dynamics (online & on-premises). Type: string (or Expression with resultType string).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    FetchXML is a proprietary query language that is used in Microsoft Dynamics (online & on-premises). Type: string (or Expression with resultType string).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    FetchXML is a proprietary query language that is used in Microsoft Dynamics (online & on-premises). Type: string (or Expression with resultType string).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    FetchXML is a proprietary query language that is used in Microsoft Dynamics (online & on-premises). Type: string (or Expression with resultType string).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    EloquaSource, EloquaSourceArgs

    AdditionalColumns object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount object
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    AdditionalColumns interface{}
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    DisableMetricsCollection interface{}
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    MaxConcurrentConnections interface{}
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    Query interface{}
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    QueryTimeout interface{}
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    SourceRetryCount interface{}
    Source retry count. Type: integer (or Expression with resultType integer).
    SourceRetryWait interface{}
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Object
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Object
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Object
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Object
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Object
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Object
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Object
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additional_columns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disable_metrics_collection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    max_concurrent_connections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    query_timeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    source_retry_count Any
    Source retry count. Type: integer (or Expression with resultType integer).
    source_retry_wait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    additionalColumns Any
    Specifies the additional columns to be added to source data. Type: array of objects(AdditionalColumns) (or Expression with resultType array of objects).
    disableMetricsCollection Any
    If true, disable data store metrics collection. Default is false. Type: boolean (or Expression with resultType boolean).
    maxConcurrentConnections Any
    The maximum concurrent connection count for the source data store. Type: integer (or Expression with resultType integer).
    query Any
    A query to retrieve data from source. Type: string (or Expression with resultType string).
    queryTimeout Any
    Query timeout. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).
    sourceRetryCount Any
    Source retry count. Type: integer (or Expression with resultType integer).
    sourceRetryWait Any
    Source retry wait. Type: string (or Expression with resultType string), pattern: ((\d+).)?(\d\d):(60|([0-5][0-9])):(60|([0-5][0-9])).

    Package Details

    Repository
    Azure Native pulumi/pulumi-azure-native
    License
    Apache-2.0
    azure-native logo
    This is the latest version of Azure Native. Use the Azure Native v1 docs if using the v1 version of this package.
    Azure Native v2.37.0 published on Monday, Apr 15, 2024 by Pulumi