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.66.0 published on Wednesday, Oct 9, 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.66.0 published on Wednesday, Oct 9, 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.

    Constructor 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=[{
            "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",
            },
        },
        pipeline_name="string",
        policy={
            "elapsedTimeMetric": {
                "duration": "any",
            },
        },
        run_dimensions={
            "string": "any",
        },
        variables={
            "string": {
                "type": "string",
                "defaultValue": "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

    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. Ty